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