mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-27 04:30:12 +08:00
10 lines
215 B
C#
10 lines
215 B
C#
using CommandLine;
|
|
|
|
namespace Shadowsocks
|
|
{
|
|
public class CommandLineOption
|
|
{
|
|
[Option("open-url",Required = false,HelpText = "Add an ss:// URL")]
|
|
public string OpenUrl { get; set; }
|
|
}
|
|
} |