diff --git a/STOContracts/SearchModels/WorkSearchModel.cs b/STOContracts/SearchModels/WorkSearchModel.cs new file mode 100644 index 0000000..d317ea5 --- /dev/null +++ b/STOContracts/SearchModels/WorkSearchModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace STOContracts.SearchModels +{ + public class WorkSearchModel + { + public int? Id { get; set; } + } +}