Files
IGP-Fan-Reference/Model/Entity/Parts/IEntityPartInterface.cs

8 lines
167 B
C#

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