2024-08-03 22:26:15 +03:00
|
|
|
|
using ServiceStationDataModels.Models;
|
2024-04-30 01:41:35 +03:00
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ExecutorBindingModel : IExecutorModel
|
|
|
|
|
{
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
2024-08-03 22:26:15 +03:00
|
|
|
|
public int Id { get; set; }
|
2024-04-30 01:41:35 +03:00
|
|
|
|
}
|
|
|
|
|
}
|