PIbd-21_Semikolenov_G.A._Pl.../PlumbingRepair/PlumbingRepairContracts/SearchModels/ComponentSearchModel.cs
2023-02-22 11:21:36 +04:00

9 lines
192 B
C#

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