public ThemeResult GetTheme(string name) { ThemeResult result = new ThemeResult(); Theme theme = _loadedConfig.GetThemeByName(name); if (theme != null) { result.Success = true; result.Theme = theme; } return result; }
public ThemeResult GetTheme(string name) { ThemeResult result = new ThemeResult(); Theme theme = _loadedConfig.GetThemeByName(name); if (theme != null) { result.Success = true; result.Theme = theme; } return(result); }