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

23 lines
570 B
C#

using Oqtane.Modules;
using System.Collections.Generic;
namespace Oqtane.Modules.HtmlText
{
public class Module : IModule
{
public Dictionary<string, string> Properties
{
get
{
Dictionary<string, string> properties = new Dictionary<string, string>
{
{ "Name", "HtmlText" },
{ "Description", "Renders HTML or Text" },
{ "Version", "1.0.0" }
};
return properties;
}
}
}
}