PortProxyGUI/PortProxyGUI.Shared/PortProxy.cs

16 lines
300 B
C#
Raw Normal View History

2020-05-29 03:32:44 +08:00
namespace PortProxyGUI
2020-05-29 00:57:32 +08:00
{
public class PortProxy
{
public string Type { get; set; }
public string ListenOn { get; set; }
public string ListenPort { get; set; }
public string ConnectTo { get; set; }
public string ConnectPort { get; set; }
}
}