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

19 lines
247 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00

namespace TINK.Services.ThemeNS
{
2022-09-06 16:08:19 +02:00
/// <summary>
/// Set of available app themes
/// </summary>
public enum ThemeSet
{
ShareeBike,
Konrad,
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
}