using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; namespace Common.Model { public class LoginCredential { [Required] public string password { get; set; } [Required] public string userId { get; set; } public string uuid { get; set; } public string fcmId { get; set; } public string clientId { get; set; } public string accessCode { get; set; } public bool IsBiometricLogin { get; set; } public Config.BiometricLogin BiometricLoginType { get; set; } public Config.CUSTOMER_TYPE CustomerType { get; set; } [JsonIgnore] public string DeviceType { get; set; } [JsonIgnore] public string AccessGuid { get; set; } } }