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
|
|
|
|
}
|