markus / IKCOM / Interface.cs @ 5538eb5a
이력 | 보기 | 이력해설 | 다운로드 (4.92 KB)
1 | 787a4489 | KangIngu | using MarkupToPDF.Controls.Common; |
---|---|---|---|
2 | using System; |
||
3 | using System.Collections.Generic; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Windows.Controls; |
||
7 | |||
8 | namespace IKCOM |
||
9 | { |
||
10 | //강인구 추가 |
||
11 | public class Square |
||
12 | { |
||
13 | //0 = x, 1 = y |
||
14 | public bool Size { get; set; } |
||
15 | public double value { get; set; } |
||
16 | } |
||
17 | |||
18 | public class KCOM_SystemInfo |
||
19 | { |
||
20 | public string HostName { get; set; } |
||
21 | public string HostPort { get; set; } |
||
22 | public string Notify { get; set; } |
||
23 | 9a1ce1db | KangIngu | public string STAMP { get; set; } |
24 | 787a4489 | KangIngu | } |
25 | //public class CommentUserInfo : Control |
||
26 | //{ |
||
27 | // public string Memo { get; set; } |
||
28 | // public string MarkupInfoID { get; set; } |
||
29 | //} |
||
30 | public class BooleanExt |
||
31 | { |
||
32 | public bool Result { get; set; } |
||
33 | public string ResultMessage { get; set; } |
||
34 | } |
||
35 | |||
36 | public class KCOM_BasicParam |
||
37 | { |
||
38 | public string projectNo { get; set; } |
||
39 | public string documentID { get; set; } |
||
40 | public string userID { get; set; } |
||
41 | } |
||
42 | |||
43 | public class ViewInfo |
||
44 | { |
||
45 | public string ProjectNO { get; set; } |
||
46 | public string UserID { get; set; } |
||
47 | public string DocumentItemID { get; set; } |
||
48 | public bool NewCommentPermission { get; set; } |
||
49 | public bool CreateFinalPDFPermission { get; set; } |
||
50 | public bool bPartner { get; set; } |
||
51 | public bool isAdmin { get; set; } |
||
52 | public string CustomHeader { get; set; } |
||
53 | public string StartPage { get; set; } |
||
54 | public bool IsCustomPage { get; set; } |
||
55 | } |
||
56 | |||
57 | public class DisplayColorInfo |
||
58 | { |
||
59 | public string UserID { get; set; } |
||
60 | public string DisplayColor { get; set; } |
||
61 | public string Department { get; set; } |
||
62 | public string UserName { get; set; } |
||
63 | } |
||
64 | |||
65 | public class MarkupPageItem |
||
66 | { |
||
67 | public MarkupPageItem() |
||
68 | { |
||
69 | DisplayColorItems = new List<SetColorMarkupItem>(); |
||
70 | } |
||
71 | |||
72 | public int PageNumber { get; set; } |
||
73 | public List<SetColorMarkupItem> DisplayColorItems { get; set; } |
||
74 | } |
||
75 | |||
76 | public class SetColorMarkupItem |
||
77 | { |
||
78 | /// GUID가 아닌 STRING으로 변경 |
||
79 | public string markupID { get; set; } |
||
80 | //public Guid markupID { get; set; } |
||
81 | public string DisplayColor { get; set; } |
||
82 | } |
||
83 | |||
84 | |||
85 | public class MarkupInfoItem |
||
86 | { |
||
87 | public string MarkupInfoID { get; set; } |
||
88 | public int PageCount { get; set; } |
||
89 | public string MarkupVersionID { get; set; } |
||
90 | public string UserID { get; set; } |
||
91 | public string UserName { get; set; } |
||
92 | public string Depatment { get; set; } |
||
93 | public string Description { get; set; } |
||
94 | public string DisplayColor { get; set; } |
||
95 | public DateTime CreateTime { get; set; } |
||
96 | 992a98b4 | KangIngu | public DateTime UpdateTime { get; set; } |
97 | 787a4489 | KangIngu | public int Consolidate { get; set; } |
98 | public bool userDelete { get; set; } |
||
99 | public List<MarkupItem> MarkupList { get; set; } |
||
100 | public int AvoidConsolidate { get; set; } |
||
101 | public int PartConsolidate { get; set; } |
||
102 | public bool IsPreviewUser { get; set; } |
||
103 | } |
||
104 | |||
105 | public class MarkupItemEx : MarkupItem |
||
106 | { |
||
107 | public string MarkupInfoID { get; set; } |
||
108 | public bool IsUpdate { get; set; } |
||
109 | } |
||
110 | |||
111 | public class VPRevision |
||
112 | { |
||
113 | public string RevNo { get; set; } |
||
114 | public string GroupNo { get; set; } |
||
115 | public string RESULT { get; set; } |
||
116 | public string FROM_VENDOR { get; set; } |
||
117 | public string TO_VENDOR { get; set; } |
||
118 | public string DOCUMENT_ID { get; set; } |
||
119 | //public string SharePointItemID { get; set; } |
||
120 | //public string BrowserPath { get; set; } |
||
121 | c91f45f3 | djkim | public string DocNo { get; set; } |
122 | 787a4489 | KangIngu | public bool IsSyncPossible { get; set; } |
123 | } |
||
124 | |||
125 | public class AttachedItem |
||
126 | { |
||
127 | public string AttachUri { get; set; } |
||
128 | public string Filename { get; set; } |
||
129 | public string CreateUserID { get; set; } |
||
130 | public string CreateUserName { get; set; } |
||
131 | public DateTime CreateDate { get; set; } |
||
132 | } |
||
133 | |||
134 | |||
135 | public class MarkupItem |
||
136 | { |
||
137 | public string ID { get; set; } |
||
138 | public int PageNumber { get; set; } |
||
139 | public string Data { get; set; } |
||
140 | public int Data_Type { get; set; } |
||
141 | public string ParsingMemo { get; set; } |
||
142 | |||
143 | } |
||
144 | public enum SERVICE_NAME |
||
145 | { |
||
146 | CONVERTER = 0, |
||
147 | VIEW = 1, |
||
148 | FINAL = 2, |
||
149 | API = 3, |
||
150 | } |
||
151 | |||
152 | public enum LEVEL |
||
153 | { |
||
154 | LOW = 0, |
||
155 | MEDIUM = 1, |
||
156 | HIGH = 2, |
||
157 | CRITICAL = 3, |
||
158 | } |
||
159 | |||
160 | public enum ERROR_TYPE |
||
161 | { |
||
162 | SYSTEM = 0, |
||
163 | DATABASE = 1, |
||
164 | NORMAL = 2, |
||
165 | PDF = 3, |
||
166 | UPLOAD = 4, |
||
167 | CONVERT = 5, |
||
168 | } |
||
169 | 992a98b4 | KangIngu | |
170 | public enum FAVORITE_FLAG |
||
171 | { |
||
172 | [System.ComponentModel.Description("#FF275EFC")] //ARGB 순 |
||
173 | ALL, |
||
174 | [System.ComponentModel.Description("#FF275EFF")] //ARGB 순 |
||
175 | TeamShare, |
||
176 | [System.ComponentModel.Description("#FF72B21B")] |
||
177 | Personal, |
||
178 | //[Description("#FFCC330D")] |
||
179 | //VeryHigh, |
||
180 | } |
||
181 | 787a4489 | KangIngu | } |