13 lines
272 B
C#
Raw Normal View History

2023-03-25 18:48:21 +04:00
namespace FoodOrdersContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}