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 |
|
|
}
|
20 |
|
|
}
|