1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySU_Core/Models/LocalProxy.cs
2021-03-04 16:25:36 +08:00

21 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProxySU_Core.Models
{
public class LocalProxy
{
public string Address { get; set; } = "127.0.0.1";
public int Port { get; set; } = 1080;
public LocalProxyType Type { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}