11 lines
273 B
C#
Raw Normal View History

2023-04-26 08:41:25 +04:00
namespace ComputersShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}