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.

23 lines
514 B

  1. using Newtonsoft.Json;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Swift.API.Common
  4. {
  5. public class PasswordReset
  6. {
  7. [Required]
  8. public string CustomerId { get; set; }
  9. public string Username { get; set; }
  10. // public string Dob { get; set; }
  11. [JsonIgnore]
  12. public string RandomPassword { get; set; }
  13. [JsonIgnore]
  14. public string RandomPin { get; set; }
  15. [JsonIgnore]
  16. public string User { get; set; }
  17. }
  18. }