RegName – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System.IO; |
2 | |||
3 | namespace RegName |
||
4 | { |
||
5 | public class RenameProgressSuccess : RenameProgress |
||
6 | { |
||
7 | #region Public Enums, Properties and Fields |
||
8 | |||
9 | public FileInfo Old { get; } |
||
10 | |||
11 | public FileInfo New { get; } |
||
12 | |||
13 | #endregion |
||
14 | |||
15 | #region Constructors, Destructors and Finalizers |
||
16 | |||
17 | public RenameProgressSuccess(int index, FileInfo oldFile, FileInfo newFile) : base(index) |
||
18 | { |
||
19 | Old = oldFile; |
||
20 | New = newFile; |
||
21 | } |
||
22 | |||
23 | #endregion |
||
24 | } |
||
25 | } |