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