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

15 lines
No EOL
256 B
C#

using Tand.Core.Models;
namespace Tand.Core.Api;
public interface ITandTarget
{
}
public interface ITandTarget<T> : ITandTarget
{
void OnEnterMethod(CallEnterContext<T> enterContext);
void OnLeaveMethod(CallLeaveContext<T> leaveContext);
}