PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaContracts/SearchModels/ClientSearchModel.cs

11 lines
268 B
C#
Raw Normal View History

2024-05-07 23:00:38 +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; }
}
}