From 19483703b7695dda7a5e6b63bedac80173407974 Mon Sep 17 00:00:00 2001 From: Ivan_Starostin Date: Sat, 27 Apr 2024 18:26:08 +0400 Subject: [PATCH] Upload files to 'ShipyardContracts/SearchModels' --- ShipyardContracts/SearchModels/ComponentSearchModel.cs | 8 ++++++++ ShipyardContracts/SearchModels/OrderSearchModel.cs | 7 +++++++ ShipyardContracts/SearchModels/ShipSearchModel.cs | 8 ++++++++ 3 files changed, 23 insertions(+) create mode 100644 ShipyardContracts/SearchModels/ComponentSearchModel.cs create mode 100644 ShipyardContracts/SearchModels/OrderSearchModel.cs create mode 100644 ShipyardContracts/SearchModels/ShipSearchModel.cs diff --git a/ShipyardContracts/SearchModels/ComponentSearchModel.cs b/ShipyardContracts/SearchModels/ComponentSearchModel.cs new file mode 100644 index 0000000..5367372 --- /dev/null +++ b/ShipyardContracts/SearchModels/ComponentSearchModel.cs @@ -0,0 +1,8 @@ +namespace ShipyardContracts.SearchModels +{ + public class ComponentSearchModel + { + public int? Id { get; set; } + public string? ComponentName { get; set; } + } +} diff --git a/ShipyardContracts/SearchModels/OrderSearchModel.cs b/ShipyardContracts/SearchModels/OrderSearchModel.cs new file mode 100644 index 0000000..f72af32 --- /dev/null +++ b/ShipyardContracts/SearchModels/OrderSearchModel.cs @@ -0,0 +1,7 @@ +namespace ShipyardContracts.SearchModels +{ + public class OrderSearchModel + { + public int? Id { get; set; } + } +} \ No newline at end of file diff --git a/ShipyardContracts/SearchModels/ShipSearchModel.cs b/ShipyardContracts/SearchModels/ShipSearchModel.cs new file mode 100644 index 0000000..28feafc --- /dev/null +++ b/ShipyardContracts/SearchModels/ShipSearchModel.cs @@ -0,0 +1,8 @@ +namespace ShipyardContracts.SearchModels +{ + public class ShipSearchModel + { + public int? Id { get; set; } + public string? ShipName { get; set; } + } +} \ No newline at end of file