14 lines
244 B
C#
14 lines
244 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace back.Domain;
|
|
|
|
public interface IEntity
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
string Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
} |