Projekt

Obecné

Profil

Stáhnout (574 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 11f447b9 Vojtěch Bartička
#nullable disable
11 caa28567 Vojtěch Bartička
    public class TagCategory : BaseEntity
12
    {
13
        public string Name { get; set; }
14
        public string Color { get; set; }
15
        public string Description { get; set; }
16 a35cb648 Vojtěch Bartička
17
        /// <summary>
18
        /// Whether or not this category is only visible to admins
19
        /// </summary>
20 2c8d08af Vojtěch Bartička
        public bool DisabledForAnnotators { get; set; } = false;
21 caa28567 Vojtěch Bartička
    }
22
}