AyCode.Core/AyCode.Interfaces/Entities/IEntity.cs

18 lines
322 B
C#

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