UpdatePwdViewModel.cs 425 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Web;
  6. namespace ShwasherSys.Models.Account
  7. {
  8. public class UpdatePwdViewModel
  9. {
  10. [Required]
  11. public string LoginName { get; set; }
  12. [Required]
  13. public string LoginPassword { get; set; }
  14. [Required]
  15. public string NewPassword { get; set; }
  16. }
  17. }