RegName – Blame information for rev 1

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