Do I even need to do server-side updating?
This commit is contained in:
parent
624fc98fa2
commit
0d198594c4
2 changed files with 16 additions and 0 deletions
|
@ -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" />
|
||||
|
|
15
ShiftOS.Objects/Unite/ReleaseQuery.cs
Normal file
15
ShiftOS.Objects/Unite/ReleaseQuery.cs
Normal file
|
@ -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; }
|
||||
}
|
||||
}
|
Reference in a new issue