aswi20220x00-gitlab/Backend/Models/Annotations/AnnotationListInfo.cs @ ff61085f
1 | 6bdb3d95 | 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 AnnotationListInfo |
||
11 | {
|
||
12 | public string DocumentName { get; set; } |
||
13 | public EState State { get; set; } |
||
14 | public Guid AnnotationId { get; set; } |
||
15 | }
|
||
16 | }
|