9f3f344daa
update killhouse map offsets (it's still wrong though)
22 lines
589 B
C#
22 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// represents an invokable middleware action
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public interface IMiddlewareAction<T>
|
|
{
|
|
/// <summary>
|
|
/// action to execute when the middleware action is invoked
|
|
/// </summary>
|
|
/// <param name="original"></param>
|
|
/// <returns>modified original action type instance</returns>
|
|
Task<T> Invoke(T original);
|
|
}
|
|
}
|