bloxstrap/Bloxstrap/Models/ClientVersion.cs
pizzaboxer 607075c9d9
Check channel by comparing against LIVE
also change how version comparisons work
2023-07-17 10:10:53 +01:00

19 lines
500 B
C#

namespace Bloxstrap.Models
{
public class ClientVersion
{
[JsonPropertyName("version")]
public string Version { get; set; } = null!;
[JsonPropertyName("clientVersionUpload")]
public string VersionGuid { get; set; } = null!;
[JsonPropertyName("bootstrapperVersion")]
public string BootstrapperVersion { get; set; } = null!;
public DateTime? Timestamp { get; set; }
public bool IsBehindDefaultChannel { get; set; }
}
}