23 lines
522 B
C#
23 lines
522 B
C#
using PowerArgs;
|
|
|
|
namespace SBT_Downloader
|
|
{
|
|
[TabCompletion]
|
|
public class MyArgs
|
|
{
|
|
[ArgShortcut("-a")]
|
|
public string? Author { get; set; }
|
|
|
|
[ArgRequired(PromptIfMissing = true), ArgShortcut("-h")]
|
|
public string Har { get; set; }
|
|
|
|
[ArgShortcut("-n")]
|
|
public string? Narrator { get; set; }
|
|
|
|
[ArgShortcut("-t")]
|
|
public string? Title { get; set; }
|
|
|
|
[ArgShortcut("-s")]
|
|
public string? Series { get; set; }
|
|
}
|
|
} |