PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaContracts/SearchModels/ClientSearchModel.cs

14 lines
271 B
C#
Raw Normal View History

2024-03-21 13:21:25 +04:00
namespace PizzeriaContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}