mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 19:23:11 +00:00
24 lines
No EOL
665 B
C#
24 lines
No EOL
665 B
C#
namespace ServiceLib.Models
|
|
{
|
|
public class ClashProxies
|
|
{
|
|
public Dictionary<String, ProxiesItem> proxies { get; set; }
|
|
|
|
public class ProxiesItem
|
|
{
|
|
public string[] all { get; set; }
|
|
public List<HistoryItem> history { get; set; }
|
|
public string name { get; set; }
|
|
public string type { get; set; }
|
|
public bool udp { get; set; }
|
|
public string now { get; set; }
|
|
public int delay { get; set; }
|
|
}
|
|
|
|
public class HistoryItem
|
|
{
|
|
public string time { get; set; }
|
|
public int delay { get; set; }
|
|
}
|
|
}
|
|
} |