mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 13:13:04 +00:00
7 lines
141 B
C#
7 lines
141 B
C#
namespace ServiceLib.Models;
|
|
|
|
public class CmdItem
|
|
{
|
|
public string? Cmd { get; set; }
|
|
public List<string>? Arguments { get; set; }
|
|
}
|