9 lines
237 B
C#
Raw Normal View History

2023-03-26 16:43:18 +04:00
namespace SushiBarContracts.SearchModels;
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFio { get; set; }
public string? Email { get; set; }
2023-03-27 16:31:19 +04:00
public string? Password { get; set; }
2023-03-26 16:43:18 +04:00
}