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.

16 lines
364 B

1 year ago
1 year ago
  1. using Newtonsoft.Json;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Common.Model
  4. {
  5. public class PasswordReset
  6. {
  7. [Required]
  8. public string Username { get; set; }
  9. public string Dob { get; set; }
  10. public string mobileNo { get; set; }
  11. [JsonIgnore]
  12. public string RandomPassword { get; set; }
  13. }
  14. }