mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
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; }
|
|
}
|
|
}
|