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