BililiveRecorder/BililiveRecorder.WPF/CommandLineOption.cs

11 lines
286 B
C#
Raw Normal View History

2019-01-31 14:17:38 +08:00
using CommandLine;
namespace BililiveRecorder.WPF
{
public class CommandLineOption
{
[Option('w', "workdirectory", Default = null, HelpText = "设置工作目录并跳过选择目录 GUI", Required = false)]
public string WorkDirectory { get; set; }
}
}