using CPRNIMS.Infrastructure.Models.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.ViewModel.Account { public class RegisterVM : ResponseObject { public string Id { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; public string FullName { get; set; } = string.Empty; public int DepartmentId { get; set; } public string Company { get; set; } = string.Empty; public string ClaimType { get; set; } = string.Empty; public string ClaimValue { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string Role { get; set; } = string.Empty; public string PhoneNumber { get; set; } = string.Empty; public string URL { get; set; } = string.Empty; public string? Address { get; set; } public string? ProfilePicture { get; set; } public bool TwoFactorEnabled { get; set; } public bool LockoutEnabled { get; set; } public AttachmentVM? Attachment { get; set; } public string? ProfilePictureStr { get; set; } public string? NewPassword { get; set; } public string UserId { get; set; } public string PasswordHash { get; set; } } }