Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Context/Entity.cs

10 lines
170 B
C#
Raw Normal View History

2018-10-12 20:52:59 +02:00
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity.Context
{
public class Entity
{
[Key]
public int Id { get; set; }
}
}