Projekt

Obecné

Profil

Stáhnout (355 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
    /// <summary>
11
    /// Base entity, defines the ID
12
    /// </summary>
13
    public class BaseEntity
14
    {
15
       [Key]
16
       public Guid Id { get; set; }
17
    }
18
}
(4-4/14)