BuildFeed/Models/ApiModel/NewBuild.cs
Thomas Hounsell e04ab6fdbd Pagination fun
Mostly some #5, some tweaks to #4
2015-05-28 21:18:21 +01:00

26 lines
685 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BuildFeed.Models.ApiModel
{
public class NewBuild
{
public string Username { get; set; }
public string Password { get; set; }
public NewBuildObject[] NewBuilds { get; set; }
}
public class NewBuildObject
{
public byte MajorVersion { get; set; }
public byte MinorVersion { get; set; }
public ushort Number { get; set; }
public ushort? Revision { get; set; }
public string Lab { get; set; }
public DateTime? BuildTime { get; set; }
public LevelOfFlight FlightLevel { get; set; }
}
}