2024-08-19 10:15:54 +00:00
|
|
|
|
using static ServiceLib.Models.ClashProxies;
|
2024-06-27 08:36:36 +00:00
|
|
|
|
|
2024-08-19 10:15:54 +00:00
|
|
|
|
namespace ServiceLib.Models
|
2024-06-27 08:36:36 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class ClashProviders
|
|
|
|
|
|
{
|
2024-10-08 01:50:03 +00:00
|
|
|
|
public Dictionary<string, ProvidersItem>? providers { get; set; }
|
2024-06-27 08:36:36 +00:00
|
|
|
|
|
|
|
|
|
|
public class ProvidersItem
|
|
|
|
|
|
{
|
2024-10-08 01:50:03 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|