Files
2026-02-21 16:45:37 +08:00

16 lines
279 B
C#

using SRDebugger.Internal;
namespace SRDebugger.Services
{
public interface IPinnedUIService
{
bool IsProfilerPinned { get; set; }
void Pin(OptionDefinition option, int order = -1);
void Unpin(OptionDefinition option);
bool HasPinned(OptionDefinition option);
}
}