9 lines
191 B
C#
9 lines
191 B
C#
namespace Oqtane.Skins
|
|
{
|
|
public interface ISkinControl
|
|
{
|
|
string Name { get; }
|
|
string Panes { get; } // if a skin has different panes, delimit them with ";"
|
|
}
|
|
}
|