2025-04-02 03:44:23 +00:00
|
|
|
namespace ServiceLib.Models;
|
|
|
|
|
|
|
|
|
|
public class ClashProxies
|
2024-06-27 08:36:36 +00:00
|
|
|
{
|
2025-04-02 03:44:23 +00:00
|
|
|
public Dictionary<string, ProxiesItem>? proxies { get; set; }
|
2024-06-27 08:36:36 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public class ProxiesItem
|
|
|
|
|
{
|
|
|
|
|
public List<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; }
|
|
|
|
|
}
|
2024-06-27 08:36:36 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public class HistoryItem
|
|
|
|
|
{
|
|
|
|
|
public string? time { get; set; }
|
|
|
|
|
public int delay { get; set; }
|
2024-06-27 08:36:36 +00:00
|
|
|
}
|
2025-04-02 03:44:23 +00:00
|
|
|
}
|