add theme creator module to simplify the scaffolding of external themes
This commit is contained in:
15
Oqtane.Client/Modules/Admin/ThemeCreator/ModuleInfo.cs
Normal file
15
Oqtane.Client/Modules/Admin/ThemeCreator/ModuleInfo.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Modules.Admin.ThemeCreator
|
||||
{
|
||||
public class ModuleInfo : IModule
|
||||
{
|
||||
public ModuleDefinition ModuleDefinition => new ModuleDefinition
|
||||
{
|
||||
Name = "Theme Creator",
|
||||
Description = "Enables software developers to quickly create themes by automating many of the initial theme creation tasks",
|
||||
Version = "1.0.0",
|
||||
Categories = "Developer"
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user