Projekt

Obecné

Profil

Stáhnout (638 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.ComponentModel.DataAnnotations.Schema;
5
using System.Linq;
6
using System.Text;
7
using System.Threading.Tasks;
8
9
namespace Core.Entities
10
{
11
    public class Tag : BaseEntity
12
    {     
13
        public TagCategory Category { get; set; }
14
        public string Name { get; set; }
15
        public string Description { get; set; }
16
        public string Color { get; set; }
17 a35cb648 Vojtěch Bartička
18
        /// <summary>
19
        /// Whether or not this tag supports sentiment
20
        /// </summary>
21 15c88dc1 Vojtěch Bartička
        public bool SentimentEnabled { get; set; } = false;
22 caa28567 Vojtěch Bartička
    }
23
}