13 lines
342 B
C#
13 lines
342 B
C#
using ServiceStationDataModels.Models;
|
|
|
|
namespace ServiceStationContracts.BindingModels
|
|
{
|
|
public class ExecutorBindingModel : IExecutorModel {
|
|
|
|
public int Id { get; set; }
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string FIO { get; set; } = string.Empty;
|
|
}
|
|
}
|