Add patch notes and config endpoints

This commit is contained in:
Holden
2026-06-27 11:23:43 -05:00
parent b3028ce741
commit 2ea247a577
14 changed files with 427 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace API.Contracts.Builds.Responses;
public class LatestBuildsResponse
{
public string LatestWindowsVersion { get; set; } = "TBF";
public string LatestLinuxVersion { get; set; } = "TBF";
public string LatestMetaVersion { get; set; } = "TBF";
}

View File

@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace API.Contracts.Config.Responses;
public class MediaPlayerConfigResponse
{
[JsonPropertyName("Enabled")]
public bool Enabled { get; set; }
[JsonPropertyName("Uri")]
public Uri? Uri { get; set; }
}