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; }
}
}