markus / FinalServiceV3 / KCOM_FinalService / MarkupToPDF / EventMember.cs @ 6a19b48d
이력 | 보기 | 이력해설 | 다운로드 (1.23 KB)
1 | faf998c6 | taeseongkim | using Markus.EntityModel; |
---|---|---|---|
2 | 6a19b48d | taeseongkim | using Markus.Service.Interface; |
3 | faf998c6 | taeseongkim | using System; |
4 | using System.Collections.Generic; |
||
5 | using System.Linq; |
||
6 | using System.Text; |
||
7 | |||
8 | namespace MarkupToPDF |
||
9 | { |
||
10 | public class EndFinalEventArgs : EventArgs |
||
11 | { |
||
12 | public string Message { get; set; } |
||
13 | public string Error { get; set; } |
||
14 | public string FinalPDFPath { get; set; } |
||
15 | public string FinalPDFRemotePath { get; set; } |
||
16 | |||
17 | public string OriginPDFName { get; set; } |
||
18 | public FINAL_PDF FinalPDF { get; set; } |
||
19 | |||
20 | } |
||
21 | |||
22 | public class EndFinalResult |
||
23 | { |
||
24 | public string Message { get; set; } |
||
25 | public string Error { get; set; } |
||
26 | public string FinalPDFPath { get; set; } |
||
27 | public string FinalPDFRemotePath { get; set; } |
||
28 | |||
29 | public string OriginPDFName { get; set; } |
||
30 | |||
31 | } |
||
32 | |||
33 | public class StatusChangedEventArgs : EventArgs |
||
34 | { |
||
35 | public string Message { get; set; } |
||
36 | public string Error { get; set; } |
||
37 | |||
38 | public int CurrentPage { get; set; } |
||
39 | |||
40 | 6a19b48d | taeseongkim | public StatusCodeType Status { get; set; } |
41 | faf998c6 | taeseongkim | |
42 | } |
||
43 | |||
44 | public class MakeFinalErrorArgs : EventArgs |
||
45 | { |
||
46 | public string FinalID { get; set; } |
||
47 | public string Message { get; set; } |
||
48 | 6a19b48d | taeseongkim | |
49 | public int CurrentPage { get; set; } |
||
50 | faf998c6 | taeseongkim | } |
51 | } |