using Oqtane.Models; using System.Collections.Generic; namespace Oqtane.Themes { public interface IThemeControl { /// /// Friendly name for a theme /// string Name { get; } /// /// Screen shot of a theme - assumed to be in the ThemePath() folder /// string Thumbnail { get; } /// /// Comma delimited list of all panes in a theme /// string Panes { get; } /// /// Identifies all resources in a theme /// List Resources { get; } } }