Upload files to 'ShipyardContracts/SearchModels'

This commit is contained in:
Ivan_Starostin 2024-04-27 18:26:08 +04:00
parent 89df2e7a25
commit 19483703b7
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace ShipyardContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}

View File

@ -0,0 +1,7 @@
namespace ShipyardContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -0,0 +1,8 @@
namespace ShipyardContracts.SearchModels
{
public class ShipSearchModel
{
public int? Id { get; set; }
public string? ShipName { get; set; }
}
}