Projekt

Obecné

Profil

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

    
10
namespace Core.Entities
11
{
12
    public class AnnotationTag : BaseEntity
13
    {
14
        public Annotation Annotation { get; set; }
15

    
16
        public Tag Tag { get; set; }
17

    
18
        /** Nullable for optional */
19
        public SubTag? SubTag { get; set; }
20

    
21
        public Guid Instance { get; set; }
22
        public string Note { get; set; }
23
        public int Position { get; set; }
24
        public int Length { get; set; }
25
        public ETagSentiment? Sentiment { get; set; }
26
    }
27
}
(3-3/11)