1
0
mirror of https://github.com/nsnail/spectre.console.git synced 2025-04-27 05:32:50 +08:00
2023-11-28 00:14:54 +01:00

8 lines
219 B
C#

namespace Spectre.Console.Tests.Data;
public sealed class AsynchronousCommandSettings : CommandSettings
{
[CommandOption("--ThrowException")]
[DefaultValue(false)]
public bool ThrowException { get; set; }
}