mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00
8 lines
173 B
C#
8 lines
173 B
C#
namespace Spectre.Console.Tests.Data;
|
|
|
|
public sealed class InvalidSettings : CommandSettings
|
|
{
|
|
[CommandOption("-f|--foo [BAR]")]
|
|
public string Value { get; set; }
|
|
}
|