Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Drawing;
2  
3 namespace Horizon.Snapshots
4 {
5 public class SnapshotPreview
6 {
7 #region Constructors, Destructors and Finalizers
8  
9 public SnapshotPreview(string hash, Bitmap shot, string note)
10 {
11 Hash = hash;
12 Shot = shot;
13 Note = note;
14 }
15  
16 #endregion
17  
18 #region Public Enums, Properties and Fields
19  
20 public string Hash { get; }
21  
22 public Bitmap Shot { get; }
23  
24 public string Note { get; }
25  
26 #endregion
27 }
28 }