mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
21 lines
651 B
C#
21 lines
651 B
C#
using Microsoft.Iris.Debug.Data;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace Microsoft.Iris.Debug;
|
|
|
|
public class DebugSettings
|
|
{
|
|
public bool UseDecompiler { get; set; } = false;
|
|
public ObservableCollection<DecompilationResult> DecompileResults { get; } = new();
|
|
|
|
public TraceSettings TraceSettings { get; } = TraceSettings.Current;
|
|
|
|
public bool GenerateDataMappingModels { get; set; } = false;
|
|
public ObservableCollection<DataMappingModel> DataMappingModels { get; } = new();
|
|
|
|
public List<Breakpoint> Breakpoints { get; } = new();
|
|
|
|
public string DebugConnectionUri { get; set; }
|
|
}
|