You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
432 B

namespace Common.Model.Remit
{
public class ChangePasswordAndTxnPinModel
{
public string UserId { get; set; }
public string CurrentPassword { get; set; }
public string NewPassword { get; set; }
public string ConfirmNewPassword { get; set; }
public string CurrentPin { get; set; }
public string NewPin { get; set; }
public string ConfirmNewPin { get; set; }
}
}