добавлен класс модель клиента
This commit is contained in:
parent
f6e40aafc6
commit
3f2810f136
12
SushiBarContracts/BindingModel/ClientBindingModel.cs
Normal file
12
SushiBarContracts/BindingModel/ClientBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using SushiBarDataModels;
|
||||
|
||||
namespace SushiBarContracts.BindingModel
|
||||
{
|
||||
public class ClientBindingModel : IClientModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string ClientFIO { get; set; } = string.Empty;
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public string Password { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user