aswi20220x00-gitlab/Backend/Models/Annotations/AnnotationListInfo.cs @ c9121169
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 AnnotationListInfo |
11 |
{
|
12 |
/// <summary>
|
13 |
/// What document
|
14 |
/// </summary>
|
15 |
public string DocumentName { get; set; } |
16 |
/// <summary>
|
17 |
/// In what state
|
18 |
/// </summary>
|
19 |
public EState State { get; set; } |
20 |
/// <summary>
|
21 |
/// The annotation
|
22 |
/// </summary>
|
23 |
public Guid AnnotationId { get; set; } |
24 |
}
|
25 |
}
|