-
Notifications
You must be signed in to change notification settings - Fork 0
/
DocumentDTO.cs
50 lines (29 loc) · 1.33 KB
/
DocumentDTO.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
namespace UMP.DocumentFlow.Dtos
{
public class DocumentDTO
{
public object Id { get; set; }
public object BaseDocumentId { get; set; }
public string Number { get; set; }
public string SeparatorOfNumberParts { get; set; }
public string Name { get; set; }
public string FullName { get; set; }
public string ProductCode { get; set; }
public string Content { get; set; }
public DateTime CreationDate { get; set; }
public DateTime? DocumentDate { get; set; }
public string Note { get; set; }
public string Kind { get; set; }
public object KindId { get; set; }
public DocumentFlowEmployeeInfoDTO AuthorDTO { get; set; }
public IEnumerable<DocumentChargeInfoDTO> ChargesInfoDTO { get; set; }
public IEnumerable<DocumentApprovingInfoDTO> ApprovingsInfoDTO { get; set; }
public IEnumerable<DocumentSigningInfoDTO> SigningsInfoDTO { get; set; }
public DocumentResponsibleInfoDTO ResponsibleInfoDTO { get; set; }
public int CurrentWorkCycleStageNumber { get; set; }
public string CurrentWorkCycleStageName { get; set; }
public bool? IsSelfRegistered { get; set; }
}
}