mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
11 lines
286 B
C#
11 lines
286 B
C#
using CommandLine;
|
|
|
|
namespace BililiveRecorder.WPF
|
|
{
|
|
public class CommandLineOption
|
|
{
|
|
[Option('w', "workdirectory", Default = null, HelpText = "设置工作目录并跳过选择目录 GUI", Required = false)]
|
|
public string WorkDirectory { get; set; }
|
|
}
|
|
}
|