aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS.Objects/ShiftOS.Objects.csproj1
-rw-r--r--ShiftOS.Objects/Unite/ReleaseQuery.cs15
2 files changed, 16 insertions, 0 deletions
diff --git a/ShiftOS.Objects/ShiftOS.Objects.csproj b/ShiftOS.Objects/ShiftOS.Objects.csproj
index d9b8bf7..ac16c30 100644
--- a/ShiftOS.Objects/ShiftOS.Objects.csproj
+++ b/ShiftOS.Objects/ShiftOS.Objects.csproj
@@ -56,6 +56,7 @@
<Compile Include="ShiftFS.cs" />
<Compile Include="Shop.cs" />
<Compile Include="Unite\Download.cs" />
+ <Compile Include="Unite\ReleaseQuery.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
diff --git a/ShiftOS.Objects/Unite/ReleaseQuery.cs b/ShiftOS.Objects/Unite/ReleaseQuery.cs
new file mode 100644
index 0000000..253ce57
--- /dev/null
+++ b/ShiftOS.Objects/Unite/ReleaseQuery.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ShiftOS.Objects.Unite
+{
+ public class ReleaseQuery
+ {
+ public bool ShowUnstable { get; set; }
+ public bool ShowObsolete { get; set; }
+ public DateTime CurrentBuildDate { get; set; }
+ }
+}