ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationContracts/SearchModels/ComponentSearchModel.cs

8 lines
197 B
C#
Raw Normal View History

2023-02-06 16:15:16 +04:00
namespace SoftwareInstallationContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}