31 lines
760 B
C#
31 lines
760 B
C#
using CandidateReviewDataModels.Enums;
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
{
|
|
public class UserBindingModel : 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; }
|
|
|
|
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; }
|
|
}
|
|
}
|