Projekt

Obecné

Profil

Stáhnout (639 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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 AnnotationTag : BaseEntity
12
    {
13
        public Annotation Annotation { get; set; }
14

    
15
        public Tag Tag { get; set; }
16

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

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