Projekt

Obecné

Profil

Stáhnout (490 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 a35cb648 Vojtěch Bartička
    /// <summary>
11
    /// Unused
12
    /// </summary>
13 caa28567 Vojtěch Bartička
    public class Class : BaseEntity
14
    {
15
        public string Name { get; set; }
16
        public string Description { get; set; }
17
        public string Color { get; set; }
18
19
        public ICollection<Annotation> Annotations { get; set; }
20
    }
21
}