1
0
mirror of https://github.com/nsnail/spectre.console.git synced 2025-04-27 21:52:51 +08:00
2020-12-06 15:41:45 +01:00

11 lines
202 B
C#

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