ПИбд-23 Старостин Иван Лабораторная работа №5 #7

Closed
Ivan_Starostin wants to merge 41 commits from lab5 into lab4
Showing only changes of commit c79c246f3f - Show all commits

View File

@ -0,0 +1,17 @@
using ShipyardDataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardContracts.BindingModels
{
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;
}
}