10 lines
163 B
C#
10 lines
163 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Modules
|
|
{
|
|
public interface IModule
|
|
{
|
|
Dictionary<string, string> Properties { get; }
|
|
}
|
|
}
|