1
0
mirror of synced 2024-09-18 16:06:08 +00:00
Tapeti/Default/BindingBufferStop.cs

14 lines
247 B
C#
Raw Normal View History

2016-12-11 14:08:58 +00:00
using System;
using Tapeti.Config;
namespace Tapeti.Default
{
// End of the line...
public class BindingBufferStop : IBindingMiddleware
{
public void Handle(IBindingContext context, Action next)
{
}
}
}