PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/ClientSearchModel.cs
2024-05-05 03:45:20 +04:00

10 lines
272 B
C#

namespace ConfectioneryContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}