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