Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Drawing;
3  
4 namespace Horizon.Database
5 {
6 public class SnapshotCreateEventArgs : EventArgs
7 {
8 #region Constructors, Destructors and Finalizers
9  
10 public SnapshotCreateEventArgs(string name, string path, Color color, bool success)
11 {
12 Name = name;
13 Path = path;
14 Color = color;
15 Success = success;
16 }
17  
18 #endregion
19  
20 #region Public Enums, Properties and Fields
21  
22 public bool Success { get; }
23  
24 public string Name { get; }
25  
26 public string Path { get; }
27  
28 public Color Color { get; }
29  
30 #endregion
31 }
32 }