Projekt

Obecné

Profil

Stáhnout (339 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 b9c5b7dd Vojtěch Bartička
namespace Models.Tags
2
{
3
    public class TagInfo
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<SubTagInfo> SubTags { get; set; }
10 66ab1fa8 Vojtěch Bartička
        public bool SentimentEnabled { get; set; }
11 b9c5b7dd Vojtěch Bartička
    }
12
}