This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-21 18:28:14 +02:00

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