Projekt

Obecné

Profil

Stáhnout (347 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 b9c5b7dd Vojtěch Bartička
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 7fdd5fa0 Vojtěch Bartička
        public bool DisabledForAnnotators { get; set; }
11
12 b9c5b7dd Vojtěch Bartička
    }
13
}