Files
IGP-Fan-Reference/Model/Entity/Parts/IEntityPartInterface.cs
T
2026-05-31 14:33:58 -04:00

9 lines
171 B
C#

using System.Text.Json.Serialization;
namespace Model.Entity.Parts;
public class IEntityPartInterface
{
[JsonIgnore]
public EntityModel Parent { get; set; }
}