fixed issues when running on WebAssembly, made IModule implementations consistent
This commit is contained in:
14
Oqtane.Client/Modules/Counter/ModuleInfo.cs
Normal file
14
Oqtane.Client/Modules/Counter/ModuleInfo.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Modules.Counter
|
||||
{
|
||||
public class ModuleInfo : IModule
|
||||
{
|
||||
public ModuleDefinition ModuleDefinition => new ModuleDefinition
|
||||
{
|
||||
Name = "Counter",
|
||||
Description = "Increments a counter",
|
||||
Version = "1.0.0"
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user