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.

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; }
}
}