mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
19 lines
512 B
C#
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; }
|
|
}
|
|
}
|