ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceContracts/SearchModels/ItemForRepairSearchModel.cs

9 lines
161 B
C#
Raw Normal View History

namespace CarServiceContracts.SearchModels
{
public class ItemForRepairSearchModel
{
public int? Id { get; set; }
public int? ItemId { get; set; }
}
}