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.

30 lines
778 B

1 year ago
  1. using Newtonsoft.Json;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Common.Model
  4. {
  5. public class LoginCredential
  6. {
  7. [Required]
  8. public string password { get; set; }
  9. [Required]
  10. public string userId { get; set; }
  11. public string uuid { get; set; }
  12. public string fcmId { get; set; }
  13. public string clientId { get; set; }
  14. public string accessCode { get; set; }
  15. public bool IsBiometricLogin { get; set; }
  16. public Config.BiometricLogin BiometricLoginType { get; set; }
  17. public Config.CUSTOMER_TYPE CustomerType { get; set; }
  18. [JsonIgnore]
  19. public string DeviceType { get; set; }
  20. [JsonIgnore]
  21. public string AccessGuid { get; set; }
  22. }
  23. }