mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
14 lines
336 B
C#
14 lines
336 B
C#
|
namespace FSO.Server.Api.Core.Models
|
|||
|
{
|
|||
|
public class UpdateCreateModel
|
|||
|
{
|
|||
|
public int branchID;
|
|||
|
public uint scheduledEpoch;
|
|||
|
public string catalog;
|
|||
|
|
|||
|
public bool contentOnly;
|
|||
|
public bool includeMonogameDelta;
|
|||
|
public bool disableIncremental;
|
|||
|
public bool minorVersion;
|
|||
|
}
|
|||
|
}
|