16 lines
364 B
C#
16 lines
364 B
C#
namespace BookShopContracts.SearchModels
|
|
{
|
|
public class ClientSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
public string? ClientSurname { get; set; }
|
|
|
|
public string? ClientName { get; set; }
|
|
|
|
public string? ClientPatronymic { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
}
|
|
}
|