Add patch notes and config endpoints
This commit is contained in:
@@ -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";
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user