Projekt

Obecné

Profil

Stáhnout (347 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
namespace Models.Tags
2
{
3
    public class TagCategoryInfo
4
    {
5
        public Guid Id { get; set; }
6
        public string Name { get; set; }
7
        public string Description { get; set; }
8
        public string Color { get; set; }
9
        public List<TagInfo> Tags { get; set; }
10
        public bool DisabledForAnnotators { get; set; }
11

    
12
    }
13
}
(9-9/12)