Do I even need to do server-side updating?

This commit is contained in:
Michael VanOverbeek 2017-04-07 21:17:02 +00:00
parent 624fc98fa2
commit 0d198594c4
2 changed files with 16 additions and 0 deletions

View file

@ -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" />

View 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; }
}
}