markus / ConvertService / ServiceBase / Markus.Service.StationController / Data / ViewInfo.cs @ c6bf88fd
이력 | 보기 | 이력해설 | 다운로드 (800 Bytes)
1 | c6bf88fd | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace Markus.Service.StationController.Data |
||
8 | { |
||
9 | public class ViewInfo |
||
10 | { |
||
11 | public string DocumentItemID { get; set; } |
||
12 | public bool bPartner { get; set; } |
||
13 | public bool CreateFinalPDFPermission { get; set; } |
||
14 | public bool NewCommentPermission { get; set; } |
||
15 | public string ProjectNO { get; set; } |
||
16 | public string UserID { get; set; } |
||
17 | public int Mode { get; set; } |
||
18 | |||
19 | |||
20 | /// <summary> |
||
21 | /// 생성자 |
||
22 | /// </summary> |
||
23 | public ViewInfo() |
||
24 | { |
||
25 | bPartner = false; |
||
26 | CreateFinalPDFPermission = true; |
||
27 | NewCommentPermission = true; |
||
28 | Mode = 0; |
||
29 | } |
||
30 | |||
31 | } |
||
32 | } |