hytos / ID2.Manager / ID2.Manager.Common / Helpers / ImportResult.cs @ 56f7f16e
이력 | 보기 | 이력해설 | 다운로드 (417 Bytes)
1 | 057ca09a | taeseongkim | using ID2.Manager.Data.Models; |
---|---|---|---|
2 | using System; |
||
3 | using System.Collections.Generic; |
||
4 | 43ceb5b3 | taeseongkim | using System.Drawing; |
5 | 057ca09a | taeseongkim | using System.Linq; |
6 | using System.Text; |
||
7 | using System.Threading.Tasks; |
||
8 | |||
9 | namespace ID2.Manager.Common.Helpers |
||
10 | { |
||
11 | public class ImportResult |
||
12 | { |
||
13 | public string Error { get; set; } |
||
14 | public List<Documents> documents { get; set; } |
||
15 | 43ceb5b3 | taeseongkim | |
16 | 56f7f16e | taeseongkim | public List<System.Drawing.Image> Images { get; set; } |
17 | 057ca09a | taeseongkim | } |
18 | } |