mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
21 lines
540 B
C#
21 lines
540 B
C#
using System;
|
|
|
|
namespace BuildFeed.Model.Api
|
|
{
|
|
public class NewBuildPost
|
|
{
|
|
public NewBuild[] NewBuilds { get; set; }
|
|
public string Password { get; set; }
|
|
public string Username { get; set; }
|
|
}
|
|
|
|
public class NewBuild
|
|
{
|
|
public DateTime? BuildTime { get; set; }
|
|
public string Lab { get; set; }
|
|
public uint MajorVersion { get; set; }
|
|
public uint MinorVersion { get; set; }
|
|
public uint Number { get; set; }
|
|
public uint? Revision { get; set; }
|
|
}
|
|
} |