PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarContracts/SearchModels/ClientSearchModel.cs

8 lines
195 B
C#
Raw Normal View History

2023-03-26 16:43:18 +04:00
namespace SushiBarContracts.SearchModels;
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFio { get; set; }
public string? Email { get; set; }
}