Projekt

Obecné

Profil

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

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

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

    
24
        public string Note { get; set; }
25

    
26
    }
27
}
(4-4/5)