Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Drawing;
2  
3 namespace Horizon.Database
4 {
5 public class SnapshotCreateSuccessEventArgs : SnapshotCreateEventArgs
6 {
7 #region Constructors, Destructors and Finalizers
8  
9 public SnapshotCreateSuccessEventArgs(string name, string time, string path, Color color, string hash) : base(
10 name, path, color,
11 true)
12 {
13 Time = time;
14 Hash = hash;
15 }
16  
17 #endregion
18  
19 #region Public Enums, Properties and Fields
20  
21 public string Time { get; }
22  
23 public string Hash { get; }
24  
25 #endregion
26 }
27 }