sharee.bike-App/SharedBusinessLogic/Services/ThemeNS/ITheme.cs

18 lines
240 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
namespace ShareeBike.Services.ThemeNS
2022-08-30 15:42:25 +02:00
{
2022-09-06 16:08:19 +02:00
/// <summary>
/// Set of available app themes
/// </summary>
public enum ThemeSet
{
ShareeBike,
LastenradBayern
}
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
public interface ITheme
{
void SetActiveTheme(string themeName);
}
2022-08-30 15:42:25 +02:00
}