Projekt

Obecné

Profil

Stáhnout (550 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 be4deff8 Vojtěch Bartička
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 f6f1ca65 Vojtěch Bartička
        public string SelectedText { get; set; }
20 be4deff8 Vojtěch Bartička
    }
21
}