6 lines
107 B
C#
6 lines
107 B
C#
namespace AuthorBuddy.Web.Services;
|
|
|
|
public interface IThemeService
|
|
{
|
|
Task ApplyTheme(string theme);
|
|
}
|