PortProxyGUI/PortProxyGUI.Shared/PortProxy.cs

16 lines
300 B
C#

namespace PortProxyGUI
{
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; }
}
}