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