Projekt

Obecné

Profil

Stáhnout (550 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.Annotations
9
{
10
    public class AnnotationInstanceAddRequest
11
    {
12
        public int Position { get; set; }
13
        public int Length { get; set; }
14
        public ETagType Type { get; set; }
15
        public Guid Id { get; set; }
16
        
17
        // If se to null, the instance is a new one 
18
        public Guid? InstanceId { get; set; }
19
        public string SelectedText { get; set; }
20
    }
21
}
(4-4/8)