WIn_RustTools/RustTools/Contracts/Services/IThemeSelectorService.cs
2024-07-14 19:24:10 +08:00

18 lines
271 B
C#

using Microsoft.UI.Xaml;
namespace RustTools.Contracts.Services;
public interface IThemeSelectorService
{
ElementTheme Theme
{
get;
}
Task InitializeAsync();
Task SetThemeAsync(ElementTheme theme);
Task SetRequestedThemeAsync();
}