markus / KCOM / Common / ThumbnailItem.cs.bak @ b3c2d962
이력 | 보기 | 이력해설 | 다운로드 (637 Bytes)
1 | 787a4489 | KangIngu | using IKCOM; |
---|---|---|---|
2 | using System; |
||
3 | using System.Collections.Generic; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | |||
7 | namespace KCOM.Common |
||
8 | { |
||
9 | public class ThumbnailItem |
||
10 | { |
||
11 | public ThumbnailItem() |
||
12 | { |
||
13 | DisplayColorItems = new List<SetColorMarkupItem>(); |
||
14 | } |
||
15 | public Uri ImageUri { get; set; } |
||
16 | public List<SetColorMarkupItem> DisplayColorItems { get; set; } |
||
17 | public int PageNumber { get; set; } |
||
18 | public int Angle { get; set; } |
||
19 | } |
||
20 | |||
21 | //public class SetColorMarkupItem |
||
22 | //{ |
||
23 | // public string markupID { get; set; } |
||
24 | // public string DisplayColor { get; set; } |
||
25 | //} |
||
26 | } |