PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopContracts/BindingModels/ClientBindingModel.cs

19 lines
443 B
C#

using BookShopDataModels.Models;
namespace BookShopContracts.BindingModels
{
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
public string ClientSurname { get; set; } = string.Empty;
public string ClientName { get; set; } = string.Empty;
public string ClientPatronymic { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
}
}