pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Client/OutputOptions.cs

21 lines
456 B
C#
Raw Normal View History

2023-04-10 22:04:27 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mono.Debugging.Client
{
[Serializable]
public class OutputOptions
{
public bool ModuleLoaded { get; set; }
public bool ModuleUnoaded { get; set; }
public bool ExceptionMessage { get; set; }
public bool SymbolSearch { get; set; }
public bool ThreadExited { get; set; }
public bool ProcessExited { get; set; }
}
}