QuickImage – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System.Collections; |
2 | using System.Drawing; |
||
3 | using System.Linq; |
||
4 | using Shipwreck.Phash; |
||
5 | |||
6 | namespace QuickImage.Database |
||
7 | { |
||
8 | public class QuickImage |
||
9 | { |
||
10 | public string File { get; } |
||
11 | |||
12 | public string[] Tags { get; } |
||
13 | |||
14 | public Digest Hash { get; } |
||
15 | |||
16 | public Image Thumbnail { get; } |
||
17 | |||
18 | public QuickImage(string file, Digest hash, string[] tags, Image thumbnail) |
||
19 | { |
||
20 | File = file; |
||
21 | Hash = hash; |
||
22 | Tags = tags; |
||
23 | Thumbnail = thumbnail; |
||
24 | } |
||
25 | } |
||
26 | } |