Horizon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace Horizon.Database
2 {
3 public class SnapshotNoteUpdateSuccessEventArgs : SnapshotNoteUpdateEventArgs
4 {
5 #region Constructors, Destructors and Finalizers
6  
7 public SnapshotNoteUpdateSuccessEventArgs(string note) : base(true)
8 {
9 Note = note;
10 }
11  
12 #endregion
13  
14 #region Public Enums, Properties and Fields
15  
16 public string Note { get; }
17  
18 #endregion
19 }
20 }