24 lines
538 B
C#
24 lines
538 B
C#
|
using UniversityDataModels;
|
|||
|
|
|||
|
namespace UniversityContracts.BindingModels
|
|||
|
{
|
|||
|
public class EmployeeBindingModel : IEmployeeModel
|
|||
|
{
|
|||
|
public string Post { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? MiddleName { get; set; }
|
|||
|
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|