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; } /// /// Identifies all panes in a theme ( delimited by "," or ";") - assumed to be a layout if no panes specified /// string Panes { get; } /// /// Identifies all resources in a theme /// List Resources { get; } } }