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,14 @@
using Oqtane.Models;
namespace Oqtane.Modules.Weather
{
public class ModuleInfo : IModule
{
public ModuleDefinition ModuleDefinition => new ModuleDefinition
{
Name = "Weather",
Description = "Displays random weather using a service",
Version = "1.0.0"
};
}
}