- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace GreenTree.Nachtragsmanagement.Web.Models.Global
- {
- public class PasswordChangeDataModel
- {
- public string CurrentPassword { get; set; }
- public string NewPassword { get; set; }
- public string ConfirmedPassword { get; set; }
- }
- }
|