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

15 lines
256 B
C#
Raw Normal View History

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