Make latest build platform nullable

This commit is contained in:
Holden
2026-06-28 13:38:37 -05:00
parent e194bbf9c4
commit ea85cbd940

View File

@@ -2,7 +2,7 @@
public class LatestBuildsResponse public class LatestBuildsResponse
{ {
public string LatestWindowsVersion { get; set; } = "TBF"; public string? LatestWindowsVersion { get; set; }
public string LatestLinuxVersion { get; set; } = "TBF"; public string? LatestLinuxVersion { get; set; }
public string LatestMetaVersion { get; set; } = "TBF"; public string? LatestMetaVersion { get; set; }
} }