RegName – Rev 1

Subversion Repositories:
Rev:
using System.IO;

namespace RegName
{
    public class RenameProgressSuccess : RenameProgress
    {
        #region Public Enums, Properties and Fields

        public FileInfo Old { get; }

        public FileInfo New { get; }

        #endregion

        #region Constructors, Destructors and Finalizers

        public RenameProgressSuccess(int index, FileInfo oldFile, FileInfo newFile) : base(index)
        {
            Old = oldFile;
            New = newFile;
        }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.