AuthorBuddy/Services/IThemeService.cs

9 lines
137 B
C#
Raw Permalink Normal View History

2026-05-16 16:13:35 +02:00
namespace AuthorBuddy.Web.Services;
public interface IThemeService
{
Task ApplyTheme(string theme);
2026-05-25 06:38:16 +02:00
string Theme { get; }
2026-05-16 16:13:35 +02:00
}