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

18 lines
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}