Projekt

Obecné

Profil

Stáhnout (490 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
    /// Unused
12
    /// </summary>
13
    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
}
(5-5/14)