Projekt

Obecné

Profil

Stáhnout (833 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using Models.Enums;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7

    
8
namespace Models.Tags
9
{
10
    public class TagInstanceInfo
11
    {
12
        /** For database */
13
        public Guid OccurenceId { get; set; }
14
        public string TagName { get; set; }
15
        public Guid TagId { get; set; }
16
        public string TagCategoryName { get; set; }
17
        public Guid TagCategoryId { get; set; }
18
        public string? SubTagName { get; set; }
19
        public Guid? SubTagId { get; set; }
20

    
21
        public Guid Instance { get; set; }
22
        public int Position { get; set; }
23
        public int Length { get; set; }
24

    
25
        public string Note { get; set; }
26

    
27
        public ETagSentiment? Sentiment { get; set; }
28
        public string SelectedText { get; set; }
29
    }
30
}
(13-13/14)