프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / IKCOM / Interface.cs @ 80856edb

이력 | 보기 | 이력해설 | 다운로드 (5.39 KB)

1
using KCOMDataModel.DataModel;
2
using MarkupToPDF.Controls.Common;
3
using System;
4
using System.Collections.Generic;
5
using System.Linq;
6
using System.Text;
7
using System.Windows.Controls;
8

    
9
namespace IKCOM
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
        public string STAMP { get; set; }
24
    }
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 string EnsembleID { get; set; }
49
        public bool NewCommentPermission { get; set; }
50
        public bool CreateFinalPDFPermission { get; set; }
51
        public bool bPartner { get; set; }
52
        public bool isAdmin { get; set; }
53
        public string CustomHeader { get; set; }
54
        public string StartPage { get; set; }
55
        public bool IsCustomPage { get; set; }
56
    }
57

    
58
    public class DisplayColorInfo
59
    {
60
        public string UserID { get; set; }
61
        public string DisplayColor { get; set; }
62
        public string Department { get; set; }
63
        public string UserName { get; set; }
64
    }
65

    
66
    public class MarkupPageItem
67
    {
68
        public MarkupPageItem()
69
        {
70
            DisplayColorItems = new List<SetColorMarkupItem>();
71
        }
72

    
73
        public int PageNumber { get; set; }
74
        public List<SetColorMarkupItem> DisplayColorItems { get; set; }
75
    }
76

    
77
    public class SetColorMarkupItem
78
    {
79
        /// GUID가 아닌 STRING으로 변경
80
        public string markupID { get; set; }
81
        //public Guid markupID { get; set; }
82
        public string DisplayColor { get; set; }
83

    
84
        public int Page { get; set; }
85
    }
86

    
87

    
88
    public class MarkupInfoItem
89
    {
90
        public string MarkupInfoID { get; set; }
91
        public int PageCount { get; set; }
92
        public string MarkupVersionID { get; set; }
93
        public string UserID { get; set; }
94
        public string UserName { get; set; }
95
        public string Depatment { get; set; }
96
        public string Description { get; set; }
97
        public string DisplayColor { get; set; }
98
        public DateTime CreateTime { get; set; }
99
        public DateTime UpdateTime { get; set; }
100
        public int Consolidate { get; set; }
101
        public bool userDelete { get; set; }
102
        public List<MarkupItem> MarkupList { get; set; }
103
        public int AvoidConsolidate { get; set; }
104
        public int PartConsolidate { get; set; }
105
        public bool IsPreviewUser { get; set; }
106
    }
107

    
108
    public class _MemberDeptColors
109
    {
110
        public List<MEMBER_DEPT_COLOR> _memberDeptColors { get; set; }
111
    }
112

    
113
    public class _MemberDeptColorsInfo
114
    {
115
        public List<MEMBER_DEPT_COLORINFO> _memberDeptColorsInfo { get; set; }
116
    }
117

    
118
    public class MarkupItemEx : MarkupItem
119
    {
120
        public string MarkupInfoID { get; set; }
121
        public bool IsUpdate { get; set; }
122
    }
123

    
124

    
125
    public class VPRevision
126
    {
127
        public string RevNo { get; set; }
128
        public string GroupNo { get; set; }
129
        public string RESULT { get; set; }
130
        public string FROM_VENDOR { get; set; }
131
        public string TO_VENDOR { get; set; }
132
        public string DOCUMENT_ID { get; set; }
133
        //public string SharePointItemID { get; set; }
134
        //public string BrowserPath { get; set; }
135
        public string DocNo { get; set; }
136
        public string EnsembleLink { get; set; }
137
        public bool IsSyncPossible { get; set; }
138
    }
139

    
140
    public class AttachedItem
141
    {
142
        public string AttachUri { get; set; }
143
        public string Filename { get; set; }
144
        public string CreateUserID { get; set; }
145
        public string CreateUserName { get; set; }
146
        public DateTime CreateDate { get; set; }
147
    }
148

    
149

    
150
    public class MarkupItem
151
    {
152
        public string ID { get; set; }
153
        public int PageNumber { get; set; }
154
        public string Data { get; set; }
155
        public int Data_Type { get; set; }
156
        public string ParsingMemo { get; set; }
157
        public string Symbol_ID { get; set; }
158
        //public long Group_ID { get; set; }
159
    }
160
    public enum SERVICE_NAME
161
    {
162
        CONVERTER = 0,
163
        VIEW = 1,
164
        FINAL = 2,
165
        API = 3,
166
    }
167

    
168
    public enum LEVEL
169
    {
170
        LOW = 0,
171
        MEDIUM = 1,
172
        HIGH = 2,
173
        CRITICAL = 3,
174
    }
175

    
176
    public enum ERROR_TYPE
177
    {
178
        SYSTEM = 0,
179
        DATABASE = 1,
180
        NORMAL = 2,
181
        PDF = 3,
182
        UPLOAD = 4,
183
        CONVERT = 5,
184
    }
185

    
186
    public enum FAVORITE_FLAG
187
    {
188
        [System.ComponentModel.Description("#FF275EFC")] //ARGB 순
189
        ALL,
190
        [System.ComponentModel.Description("#FF275EFF")] //ARGB 순
191
        TeamShare,
192
        [System.ComponentModel.Description("#FF72B21B")]
193
        Personal,
194
        //[Description("#FFCC330D")]
195
        //VeryHigh,
196
    }
197
}
클립보드 이미지 추가 (최대 크기: 500 MB)