23 lines
584 B
C#
23 lines
584 B
C#
|
using UniversityDataModels;
|
|||
|
using UniversityDataModels.HelperInterfaces;
|
|||
|
|
|||
|
namespace UniversityContracts.BindingModels
|
|||
|
{
|
|||
|
public class ClientBindingModel : IClientModel
|
|||
|
{
|
|||
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? MiddleName { get; set; }
|
|||
|
|
|||
|
public string PhoneNumber { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|