ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryContracts/SearchModels/ComponentSearchModel.cs
2024-02-25 14:03:09 +04:00

10 lines
190 B
C#

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