16 lines
279 B
C#
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);
|
|
}
|
|
}
|