tand/src/Tand.Core/Api/ITandTarget.cs

11 lines
225 B
C#
Raw Normal View History

2020-03-10 01:01:59 +01:00
using Tand.Core.Models;
namespace Tand.Core.Api
2020-03-10 01:01:59 +01:00
{
public interface ITandTarget<T>
{
void OnEnterMethod(CallEnterContext<T> enterContext);
void OnLeaveMethod(CallLeaveContext<T> leaveContext);
}
}