sharee.bike-App/SharedBusinessLogic/Services/ThemeNS/ITheme.cs
2024-04-09 12:53:23 +02:00

18 lines
240 B
C#

namespace ShareeBike.Services.ThemeNS
{
/// <summary>
/// Set of available app themes
/// </summary>
public enum ThemeSet
{
ShareeBike,
LastenradBayern
}
public interface ITheme
{
void SetActiveTheme(string themeName);
}
}