mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
10 lines
258 B
C#
10 lines
258 B
C#
namespace Oqtane.Modules
|
|
{
|
|
public interface IModuleControl
|
|
{
|
|
string Title { get; }
|
|
SecurityAccessLevelEnum SecurityAccessLevel { get; }
|
|
string Actions { get; } // can be specified as a comma delimited set of values
|
|
}
|
|
}
|