14 lines
381 B
C#
14 lines
381 B
C#
using PowerArgs;
|
|
|
|
namespace SBT_Downloader
|
|
{
|
|
[TabCompletion]
|
|
public class MyArgs
|
|
{
|
|
// This argument is required and if not specified the user
|
|
// will be prompted. It has the short '-h', but tab completion
|
|
// Is support
|
|
[ArgRequired(PromptIfMissing = true), ArgShortcut("-h")]
|
|
public string Har { get; set; }
|
|
}
|
|
} |