Projekt

Obecné

Profil

Stáhnout (282 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 caa28567 Vojtěch Bartička
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel.DataAnnotations;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7
8
namespace Core.Entities
9
{
10
    public class BaseEntity
11
    {
12
       [Key]
13 17d0fdac Vojtěch Bartička
       public Guid Id { get; set; }
14 caa28567 Vojtěch Bartička
    }
15
}