9 lines
171 B
C#
9 lines
171 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Model.Entity.Parts;
|
|
|
|
public class IEntityPartInterface
|
|
{
|
|
[JsonIgnore]
|
|
public EntityModel Parent { get; set; }
|
|
} |