|
|
|
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);
|
|
}
|
|
}
|