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 DecompileResults { get; } = new(); public TraceSettings TraceSettings { get; } = TraceSettings.Current; public bool GenerateDataMappingModels { get; set; } = false; public ObservableCollection DataMappingModels { get; } = new(); public HashSet Breakpoints { get; } = new(); public string DebugConnectionUri { get; set; } }