Add system proxy for Linux

This commit is contained in:
2dust
2024-09-28 10:41:30 +08:00
parent fde2a768cf
commit 1411643192
9 changed files with 169 additions and 35 deletions

View File

@@ -0,0 +1,8 @@
namespace ServiceLib.Models
{
public class CmdItem
{
public string? Cmd { get; set; }
public string? Arguments { get; set; }
}
}