CourseWork_KPO/CandidateReviewContracts/ViewModels/UserViewModel.cs

31 lines
754 B
C#
Raw Permalink Normal View History

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; }
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; }
}
}