Zzz – Blame information for rev 1

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