mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
11 lines
210 B
C#
11 lines
210 B
C#
using Spectre.Console.Cli;
|
|
|
|
namespace Generator.Commands
|
|
{
|
|
public class GeneratorSettings : CommandSettings
|
|
{
|
|
[CommandArgument(0, "<OUTPUT>")]
|
|
public string Output { get; set; }
|
|
}
|
|
}
|