Projekt

Obecné

Profil

Stáhnout (573 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 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
}
(4-4/9)