From 3f2810f136c1570beb8b9ee50e25874b49340c17 Mon Sep 17 00:00:00 2001 From: ekallin Date: Fri, 5 Apr 2024 16:32:39 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=20=D0=BC=D0=BE=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=20=D0=BA=D0=BB=D0=B8=D0=B5=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBarContracts/BindingModel/ClientBindingModel.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 SushiBarContracts/BindingModel/ClientBindingModel.cs diff --git a/SushiBarContracts/BindingModel/ClientBindingModel.cs b/SushiBarContracts/BindingModel/ClientBindingModel.cs new file mode 100644 index 0000000..8817b91 --- /dev/null +++ b/SushiBarContracts/BindingModel/ClientBindingModel.cs @@ -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; + } +}