markus / MarkusLogview / ServiceInterface / LogView_Interface.cs @ b4a1c7ff
이력 | 보기 | 이력해설 | 다운로드 (1.03 KB)
1 | 84578b97 | djkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Web; |
||
5 | |||
6 | namespace ServiceInterface |
||
7 | { |
||
8 | public class LogView_Interface |
||
9 | { |
||
10 | public enum PDFStatus : int |
||
11 | { |
||
12 | /// <summary> |
||
13 | /// 추가 |
||
14 | /// </summary> |
||
15 | Insert = 0, |
||
16 | |||
17 | /// <summary> |
||
18 | /// 대기 |
||
19 | /// </summary> |
||
20 | Wait = 1, |
||
21 | |||
22 | /// <summary> |
||
23 | /// 생성1단계 |
||
24 | /// </summary> |
||
25 | //Create = 2, |
||
26 | |||
27 | /// <summary> |
||
28 | /// 생성 2단계 |
||
29 | /// </summary> |
||
30 | Crop = 3, |
||
31 | |||
32 | /// <summary> |
||
33 | /// 완료 |
||
34 | /// </summary> |
||
35 | Success = 4, |
||
36 | |||
37 | |||
38 | /// <summary> |
||
39 | /// 에러 |
||
40 | /// </summary> |
||
41 | Error = 5, |
||
42 | |||
43 | /// <summary> |
||
44 | /// 전체 |
||
45 | /// </summary> |
||
46 | Entire = 6 |
||
47 | } |
||
48 | |||
49 | public enum ProjectStatus |
||
50 | { |
||
51 | ConvertPDF = 0, |
||
52 | |||
53 | FinalPDF = 1 |
||
54 | } |
||
55 | |||
56 | } |
||
57 | } |