sharee.bike-App/TINKLib/Services/ThemeNS/ITheme.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

19 lines
247 B
C#

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