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