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

17 lines
246 B
C#

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