1
0
mirror of synced 2024-07-01 16:27:40 +00:00
Tapeti/Config/IBindingMiddleware.cs

10 lines
157 B
C#
Raw Normal View History

2016-12-11 14:08:58 +00:00
using System;
namespace Tapeti.Config
{
public interface IBindingMiddleware
{
void Handle(IBindingContext context, Action next);
}
}