mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
e04ab6fdbd
Mostly some #5, some tweaks to #4
26 lines
685 B
C#
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; }
|
|
}
|
|
} |