bloxstrap/Bloxstrap/Models/APIs/Roblox/ClientVersion.cs

17 lines
454 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; }
}
}