mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-20 11:34:22 +00:00
11 lines
336 B
C#
11 lines
336 B
C#
namespace Oqtane.Themes
|
|
{
|
|
public interface ILayoutControl
|
|
{
|
|
string Name { get; } // friendly name for a layout
|
|
string Thumbnail { get; } // screen shot of a layout - assumed to be in the ThemePath() folder
|
|
string Panes { get; } // identifies all panes in a theme ( delimited by "," or ";" )
|
|
|
|
}
|
|
}
|