mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
add support for plugin generated pages (interactions). add disallow vpn command
This commit is contained in:
@ -8,6 +8,8 @@ namespace SharedLibraryCore.Interfaces;
|
||||
public interface IInteractionData
|
||||
{
|
||||
int? EntityId { get; }
|
||||
string InteractionId { get; }
|
||||
InteractionType InteractionType { get; }
|
||||
bool Enabled { get; }
|
||||
string Name { get; }
|
||||
string Description { get; }
|
||||
@ -22,3 +24,10 @@ public interface IInteractionData
|
||||
InteractionCallback Action { get; }
|
||||
Delegate ScriptAction { get; }
|
||||
}
|
||||
|
||||
public enum InteractionType
|
||||
{
|
||||
ActionButton,
|
||||
RawContent,
|
||||
TemplateContent
|
||||
}
|
||||
|
Reference in New Issue
Block a user