Horizon – Blame information for rev 1

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