mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
start work to allow custom accent colors
This commit is contained in:
13
SharedLibraryCore/Interfaces/IMiddlewareActionHandler.cs
Normal file
13
SharedLibraryCore/Interfaces/IMiddlewareActionHandler.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
public interface IMiddlewareActionHandler
|
||||
{
|
||||
void Register<T>(T actionType, IMiddlewareAction<T> action, string name = null);
|
||||
Task<T> Execute<T>(T value, string name = null);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user