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

9 lines
191 B
C#

namespace CarRepairShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}