bloxstrap/Bloxstrap/Models/APIs/Roblox/ClientVersion.cs
2024-09-15 20:58:28 +01:00

19 lines
512 B
C#

namespace Bloxstrap.Models.APIs.Roblox
{
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; }
}
}