Files
SuperSQLInjectionV1/SuperSQLInjection/model/Proxy.cs
shack2 cac99f5095 update20190120
20190120 V1.0 正式版---
修复HTTP代理验证错误问题。
优化界面。
2019-01-20 22:32:31 +08:00

24 lines
623 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace SuperSQLInjection.model
{
[Serializable]
public class Proxy
{
public Proxy() {
}
public String host = "";
public int port = 0;
public String proxyType = "HTTP";//socks5或HTTP
public String username = "";//代理账户
public String password = "";//代理密码
public String isOk ="未验证";//未验证,是,否
public int useTime = 0;//连接使用时间
public String checkTime = "";//验证时间
}
}