AuthorBuddy/Services/IThemeService.cs
2026-05-25 06:38:16 +02:00

8 lines
137 B
C#

namespace AuthorBuddy.Web.Services;
public interface IThemeService
{
Task ApplyTheme(string theme);
string Theme { get; }
}