Projekt

Obecné

Profil

Stáhnout (438 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
    public class Class : BaseEntity
11
    {
12
        public string Name { get; set; }
13
        public string Description { get; set; }
14
        public string Color { get; set; }
15

    
16
        public ICollection<Annotation> Annotations { get; set; }
17
    }
18
}
(4-4/13)