mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-25 12:09:40 +05:00
8 lines
141 B
C#
8 lines
141 B
C#
namespace ServiceLib.Models;
|
|
|
|
public class CmdItem
|
|
{
|
|
public string? Cmd { get; set; }
|
|
public List<string>? Arguments { get; set; }
|
|
}
|