Projekt

Obecné

Profil

Stáhnout (537 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 15c88dc1 Vojtěch Bartička
        public bool SentimentEnabled { get; set; } = false;
18 caa28567 Vojtěch Bartička
    }
19
}