oqtane.framework/Oqtane.Client/Modules/Weather/Module.cs
2019-09-14 15:31:12 -04:00

23 lines
587 B
C#

using Oqtane.Modules;
using System.Collections.Generic;
namespace Oqtane.Modules.Weather
{
public class Module : IModule
{
public Dictionary<string, string> Properties
{
get
{
Dictionary<string, string> properties = new Dictionary<string, string>
{
{ "Name", "Weather" },
{ "Description", "Displays random weather using a service" },
{ "Version", "1.0.0" }
};
return properties;
}
}
}
}