13 lines
274 B
C#
Raw Normal View History

2023-03-26 22:26:19 +04:00
namespace IceCreamShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}