RegName – Rev 1

Subversion Repositories:
Rev:
namespace RegName
{
    public class FileRename
    {
        #region Public Enums, Properties and Fields

        public string New { get; set; }

        public string Old { get; set; }

        #endregion

        #region Constructors, Destructors and Finalizers

        public FileRename(string newName, string oldName)
        {
            New = newName;
            Old = oldName;
        }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.