This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Objects/Unite/ReleaseQuery.cs
2017-04-07 21:17:02 +00:00

15 lines
347 B
C#

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