13 lines
211 B
C#
13 lines
211 B
C#
using System.Collections.Generic;
|
|
using SRDebugger.Internal;
|
|
|
|
namespace SRDebugger.Services
|
|
{
|
|
public interface IOptionsService
|
|
{
|
|
ICollection<OptionDefinition> Options { get; }
|
|
|
|
void Scan(object obj);
|
|
}
|
|
}
|