RegName – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace RegName
2 {
3 public class RenameProgress
4 {
5 #region Public Enums, Properties and Fields
6  
7 public int Index { get; set; }
8  
9 #endregion
10  
11 #region Constructors, Destructors and Finalizers
12  
13 public RenameProgress(int index)
14 {
15 Index = index;
16 }
17  
18 #endregion
19 }
20 }