mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
17 lines
240 B
C#
17 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);
|
|
}
|
|
}
|