mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-15 04:49:13 +00:00
16 lines
411 B
C#
16 lines
411 B
C#
using static ServiceLib.Models.ClashProxies;
|
|
|
|
namespace ServiceLib.Models;
|
|
|
|
public class ClashProviders
|
|
{
|
|
public Dictionary<string, ProvidersItem>? providers { get; set; }
|
|
|
|
public class ProvidersItem
|
|
{
|
|
public string? name { get; set; }
|
|
public List<ProxiesItem>? proxies { get; set; }
|
|
public string? type { get; set; }
|
|
public string? vehicleType { get; set; }
|
|
}
|
|
}
|