ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/SearchModels/ComponentSearchModel.cs

9 lines
198 B
C#
Raw Normal View History

2024-05-12 14:38:32 +04:00
namespace SoftwareInstallationContracts.SearchModels
2024-04-07 16:54:02 +04:00
{
public class ComponentSearchModel
{
public int? Id { get; set; }
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
public string? ComponentName { get; set; }
}
2024-05-12 14:38:32 +04:00
}