14 lines
271 B
C#
Raw Permalink Normal View History

2024-05-07 23:00:38 +04:00
namespace PizzeriaContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
2024-05-22 01:01:59 +03:00
2024-05-07 23:00:38 +04:00
public string? ClientFIO { get; set; }
2024-05-22 01:01:59 +03:00
2024-05-07 23:00:38 +04:00
public string? Email { get; set; }
2024-05-22 01:01:59 +03:00
2024-05-07 23:00:38 +04:00
public string? Password { get; set; }
}
}