mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-19 08:04:40 +03:00
17 lines
450 B
C#
17 lines
450 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 ProxiesItem[] proxies { get; set; }
|
|
public string type { get; set; }
|
|
public string vehicleType { get; set; }
|
|
}
|
|
}
|
|
} |