1
0
mirror of https://github.com/nsnail/spectre.console.git synced 2025-04-28 06:02:49 +08:00
2021-05-23 23:30:14 +02:00

11 lines
210 B
C#

using Spectre.Console.Cli;
namespace Generator.Commands
{
public class GeneratorSettings : CommandSettings
{
[CommandArgument(0, "<OUTPUT>")]
public string Output { get; set; }
}
}