17 lines
494 B
C#
17 lines
494 B
C#
namespace Moonlight.Shared.Misc;
|
|
|
|
public class FrontendConfiguration
|
|
{
|
|
public string Title { get; set; }
|
|
public string ApiUrl { get; set; }
|
|
public string HostEnvironment { get; set; }
|
|
public ThemeData Theme { get; set; } = new();
|
|
public string[] Scripts { get; set; }
|
|
public string[] Styles { get; set; }
|
|
public string[] Assemblies { get; set; }
|
|
|
|
public class ThemeData
|
|
{
|
|
public Dictionary<string, string> Variables { get; set; } = new();
|
|
}
|
|
} |