9 lines
166 B
C#
9 lines
166 B
C#
namespace NexusReader.UI.Shared.Services;
|
|
|
|
public interface IThemeService
|
|
{
|
|
bool IsLightMode { get; }
|
|
event Action? OnThemeChanged;
|
|
void ToggleTheme();
|
|
}
|