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