Projekt

Obecné

Profil

Stáhnout (620 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 Core.Entities
9
{
10
    public class AnnotationTagGeneric : BaseEntity
11
    {
12
        public Tag Tag { get; set; }
13

    
14
        /** Nullable for optional */
15
        public SubTag? SubTag { get; set; }
16

    
17
        public Guid Instance { get; set; }
18
        public string Note { get; set; }
19
        public int Position { get; set; }
20
        public int Length { get; set; }
21
        public ETagSentiment? Sentiment { get; set; }
22
        public string SelectedText { get; set; }
23
    }
24
}
(3-3/14)