Files
2018-10-12 20:52:59 +02:00

10 lines
170 B
C#

using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity.Context
{
public class Entity
{
[Key]
public int Id { get; set; }
}
}