fixed issues when running on WebAssembly, made IModule implementations consistent

This commit is contained in:
Shaun Walker
2020-04-06 13:25:19 -04:00
parent 898bf38156
commit 7421df2970
8 changed files with 35 additions and 18 deletions

View File

@ -0,0 +1,15 @@
using Oqtane.Models;
namespace Oqtane.Modules.Admin.ModuleCreator
{
public class ModuleInfo : IModule
{
public ModuleDefinition ModuleDefinition => new ModuleDefinition
{
Name = "Module Creator",
Description = "Enables software developers to quickly create modules by automating many of the initial module creation tasks",
Version = "1.0.0",
Categories = "Developer"
};
}
}