using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Webclient.Models { [Table("UserProfile")] public class UserProfile { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int UserId { get; set; } public string UserName { get; set; } } public class RegisterExternalLoginModel { [Required] [Display(Name = "User name")] public string UserName { get; set; } public string ExternalLoginData { get; set; } } public class LocalPasswordModel { [Required] public string UserName { get; set; } [Required] [DataType(DataType.Password)] [Display(Name = "Current password")] public string OldPassword { get; set; } [Required] [StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)] [DataType(DataType.Password)] [Display(Name = "New password")] public string NewPassword { get; set; } [DataType(DataType.Password)] [Display(Name = "Confirm new password")] [Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")] public string ConfirmPassword { get; set; } } public class LoginModel { [Required] [Display(Name = "User name")] public string LoginID { get; set; } [Required] [DataType(DataType.Password)] [Display(Name = "Password")] public string Password { get; set; } [Display(Name = "Remember me?")] public bool RememberMe { get; set; } } public class PortalLoginModel { public string UserName { get; set; } public string Password { get; set; } } public class RegisterModel { [Required] [Display(Name = "User name")] public string FullName { get; set; } [Required] [Display(Name = "MobileNo")] public string MobileNo { get; set; } [Required] [DataType(DataType.Password)] [Display(Name = "Password")] public string Password { get; set; } [DataType(DataType.Password)] [Display(Name = "Confirm password")] [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")] public string ConfirmPassword { get; set; } } public class ProfileViewModel { public string Id { get; set; } public string UserName { get; set; } public string Email { get; set; } public string Gender { get; set; } public string PhoneNumber { get; set; } public string Password { get; set; } public string UserFullName { get; set; } public string UserType { get; set; } public string Address { get; set; } public string CompanyName { get; set; } public bool? HasAccessQrCodeScan { get; set; } public string UniqueDeviceIdentifier { get; set; } public bool? IsMultipleDevieAllow { get; set; } } }