Projekt

Obecné

Profil

Stáhnout (529 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
    public class SubTag : BaseEntity
11
    {
12
        public string Name { get; set; }
13
        public string Description { get; set; }
14
        public Tag Tag { get; set; }
15 a35cb648 Vojtěch Bartička
16
        /// <summary>
17
        /// Whether or not this tag supports sentiment
18
        /// </summary>
19 15c88dc1 Vojtěch Bartička
        public bool SentimentEnabled { get; set; } = false;
20 caa28567 Vojtěch Bartička
    }
21
}