добавлен класс модель клиента

This commit is contained in:
ekallin 2024-04-05 16:32:39 +03:00
parent f6e40aafc6
commit 3f2810f136

View 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;
}
}