29 lines
701 B
C#
29 lines
701 B
C#
|
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 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; }
|
|||
|
}
|
|||
|
}
|