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