PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarContracts/SearchModels/ClientSearchModel.cs
2023-03-26 16:43:18 +04:00

8 lines
195 B
C#

namespace SushiBarContracts.SearchModels;
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFio { get; set; }
public string? Email { get; set; }
}