ISEbd-22_CourseWork_School/School/SchoolContracts/BindingModels/ExecutorBindingModel.cs

18 lines
484 B
C#
Raw Normal View History

2024-05-01 17:54:58 +04:00
using SchoolDataModels;
namespace SchoolContracts.BindingModels
{
public class ExecutorBindingModel : IExecutorModel
{
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; }
}
}