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