v2rayN/v2rayN/ServiceLib/Models/CmdItem.cs
2024-10-15 20:22:26 +08:00

8 lines
No EOL
165 B
C#

namespace ServiceLib.Models
{
public class CmdItem
{
public string? Cmd { get; set; }
public List<string>? Arguments { get; set; }
}
}