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

9 lines
191 B
C#
Raw Normal View History

2024-02-09 22:08:31 +04:00
namespace CarRepairShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}