Spring – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace Spring.Discharging
4 {
5 public class DischargeStopEventArgs : EventArgs
6 {
7 #region Public Enums, Properties and Fields
8  
9 public int Repeat { get; set; }
10  
11 #endregion
12  
13 #region Constructors, Destructors and Finalizers
14  
15 public DischargeStopEventArgs(int repeat) => Repeat = repeat;
16  
17 #endregion
18 }
19 }