PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/SearchModels/ClientSearchModel.cs

11 lines
273 B
C#
Raw Normal View History

2024-04-06 19:58:28 +04:00
namespace CarRepairShopContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}