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);
}