19 lines
443 B
C#
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;
|
|||
|
|
|||
|
}
|
|||
|
}
|