23 lines
575 B
C#
23 lines
575 B
C#
using Oqtane.Modules;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Client.Modules.Counter
|
|
{
|
|
public class Module : IModule
|
|
{
|
|
public Dictionary<string, string> Properties
|
|
{
|
|
get
|
|
{
|
|
Dictionary<string, string> properties = new Dictionary<string, string>
|
|
{
|
|
{ "Name", "Counter" },
|
|
{ "Description", "Increments a counter" },
|
|
{ "Version", "1.0.0" }
|
|
};
|
|
return properties;
|
|
}
|
|
}
|
|
}
|
|
}
|