using System.ComponentModel.DataAnnotations; using AyCode.Core.Interfaces; namespace AyCode.Interfaces.Entities { public interface IEntity : IAcSerializableToJson { } public interface IEntity : IEntity, IId { //[Key] TPKey Id { get; set; } //T SetId(T id); } }