PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopContracts/SearchModels/ClientSearchModel.cs

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; }
}
}