15 lines
345 B

4 months ago
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace ReZero.SuperAPI
{
public interface ISuperApiAop
{
Task OnExecutingAsync(InterfaceContext context);
Task OnExecutedAsync(InterfaceContext context);
Task OnErrorAsync(InterfaceContext context);
}
}