* move dark/light mode toggle to ui settings page * separate current culture (formatting) and ui culture (language) * add some more sample translations * update changelog * fix cancellation token
9 lines
167 B
C#
9 lines
167 B
C#
namespace ErsatzTV.Application.Configuration;
|
|
|
|
public class UiSettingsViewModel
|
|
{
|
|
public bool IsDarkMode { get; set; }
|
|
|
|
public string Language { get; set; }
|
|
}
|