v2rayN/v2rayN/ServiceLib/Models/ClashProviders.cs

17 lines
459 B
C#
Raw Normal View History

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