markus / FinalService / KCOM_FinalService / MarkupToPDF / EventMember.cs @ cf1cc862
이력 | 보기 | 이력해설 | 다운로드 (1.16 KB)
1 | 7ca218b3 | KangIngu | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | |||
6 | namespace MarkupToPDF |
||
7 | { |
||
8 | public class EndFinalEventArgs : EventArgs |
||
9 | { |
||
10 | public string Message { get; set; } |
||
11 | public string Error { get; set; } |
||
12 | public string FinalPDFPath { get; set; } |
||
13 | e77fc685 | taeseongkim | public string FinalPDFRemotePath { get; set; } |
14 | |||
15 | 7ca218b3 | KangIngu | public string OriginPDFName { get; set; } |
16 | public KCOMDataModel.DataModel.FINAL_PDF FinalPDF { get; set; } |
||
17 | |||
18 | } |
||
19 | |||
20 | 1305c420 | taeseongkim | public class EndFinalResult |
21 | { |
||
22 | public string Message { get; set; } |
||
23 | public string Error { get; set; } |
||
24 | public string FinalPDFPath { get; set; } |
||
25 | public string FinalPDFRemotePath { get; set; } |
||
26 | |||
27 | public string OriginPDFName { get; set; } |
||
28 | |||
29 | } |
||
30 | |||
31 | ab590000 | taeseongkim | public class StatusChangedEventArgs : EventArgs |
32 | { |
||
33 | public string Message { get; set; } |
||
34 | public string Error { get; set; } |
||
35 | |||
36 | public int CurrentPage { get; set; } |
||
37 | |||
38 | cf1cc862 | taeseongkim | public IFinalPDF.FinalStatus Status { get; set; } |
39 | |||
40 | ab590000 | taeseongkim | } |
41 | |||
42 | 7ca218b3 | KangIngu | public class MakeFinalErrorArgs : EventArgs |
43 | { |
||
44 | public string FinalID { get; set; } |
||
45 | public string Message { get; set; } |
||
46 | } |
||
47 | } |