10 lines
170 B
C#
10 lines
170 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LaDOSE.Entity.Context
|
|
{
|
|
public class Entity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
}
|
|
} |