oqtane.framework/Oqtane.Client/Modules/IModule.cs

10 lines
163 B
C#

using System.Collections.Generic;
namespace Oqtane.Modules
{
public interface IModule
{
Dictionary<string, string> Properties { get; }
}
}