namespace StabilityMatrix.Avalonia.Models;
///
/// Command line arguments passed to the application.
///
public class AppArgs
{
///
/// Whether to use the exception dialog while debugger is attached.
/// When no debugger is attached, the exception dialog is always used.
///
public bool DebugExceptionDialog { get; set; }
///
/// Whether to use Sentry when a debugger is attached.
///
public bool DebugSentry { get; set; }
///
/// Whether to disable Sentry.
///
public bool NoSentry { get; set; }
///
/// Whether to disable window chrome effects
///
public bool NoWindowChromeEffects { get; set; }
}