
To better align with commonly used terminology in industry renamed all references from Skin -> Theme.
14 lines
460 B
C#
14 lines
460 B
C#
namespace Oqtane.Themes.Theme3
|
|
{
|
|
public class Theme : ITheme
|
|
{
|
|
public string Name { get { return "Theme3"; } }
|
|
public string Version { get { return "1.0.0"; } }
|
|
public string Owner { get { return ""; } }
|
|
public string Url { get { return ""; } }
|
|
public string Contact { get { return ""; } }
|
|
public string License { get { return ""; } }
|
|
public string Dependencies { get { return ""; } }
|
|
}
|
|
}
|