mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-12 08:08:06 -05:00
implement new eventing system
This commit is contained in:
11
SharedLibraryCore/Interfaces/IModularAssembly.cs
Normal file
11
SharedLibraryCore/Interfaces/IModularAssembly.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace SharedLibraryCore.Interfaces;
|
||||
|
||||
public interface IModularAssembly
|
||||
{
|
||||
string Name { get; }
|
||||
string Author { get; }
|
||||
string Version { get; }
|
||||
string Scope => string.Empty;
|
||||
string Role => string.Empty;
|
||||
string[] Claims => System.Array.Empty<string>();
|
||||
}
|
Reference in New Issue
Block a user