2025-04-02 03:44:23 +00:00
|
|
|
using static ServiceLib.Models.ClashProxies;
|
2024-06-27 08:36:36 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
namespace ServiceLib.Models;
|
|
|
|
|
|
|
|
|
|
public class ClashProviders
|
2024-06-27 08:36:36 +00:00
|
|
|
{
|
2025-04-02 03:44:23 +00:00
|
|
|
public Dictionary<string, ProvidersItem>? providers { get; set; }
|
2024-06-27 08:36:36 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public class ProvidersItem
|
|
|
|
|
{
|
|
|
|
|
public string? name { get; set; }
|
|
|
|
|
public List<ProxiesItem>? proxies { get; set; }
|
|
|
|
|
public string? type { get; set; }
|
|
|
|
|
public string? vehicleType { get; set; }
|
2024-06-27 08:36:36 +00:00
|
|
|
}
|
2025-04-02 03:44:23 +00:00
|
|
|
}
|