PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/SearchModels/ClientSearchModel.cs

13 lines
275 B
C#
Raw Normal View History

2024-04-27 21:36:54 +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; }
}
}