2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewDataModels.Enums;
|
|
|
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class UserViewModel : IUserModel
|
|
|
|
|
{
|
|
|
|
|
public int? CompanyId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
|
|
2024-11-06 01:27:34 +04:00
|
|
|
|
public string? AvatarFilePath { get; set; }
|
|
|
|
|
|
2024-11-04 22:26:40 +04:00
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool EmailConfirmed { get; set; }
|
|
|
|
|
|
|
|
|
|
public RoleEnum Role { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|