18 lines
492 B
C#
18 lines
492 B
C#
using UniversityDataModels;
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
{
|
|
public class DirectorBindingModel : IDirectorModel
|
|
{
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
public int Id { get; set; }
|
|
}
|
|
}
|