Update V2rayConfig.cs

This commit is contained in:
2dust 2025-02-12 19:18:59 +08:00
parent 41cc260b5c
commit 3bbd1edf06

View file

@ -4,23 +4,15 @@ namespace ServiceLib.Models
{
public class V2rayConfig
{
public string? remarks { get; set; }
public Log4Ray log { get; set; }
public List<Inbounds4Ray> inbounds { get; set; }
public List<Outbounds4Ray> outbounds { get; set; }
public Stats4Ray? stats { get; set; }
public Metrics4Ray? metrics { get; set; }
public Policy4Ray? policy { get; set; }
public object dns { get; set; }
public List<Inbounds4Ray> inbounds { get; set; }
public List<Outbounds4Ray> outbounds { get; set; }
public Routing4Ray routing { get; set; }
public Metrics4Ray? metrics { get; set; }
public Policy4Ray? policy { get; set; }
public Stats4Ray? stats { get; set; }
public string? remarks { get; set; }
}
public class Stats4Ray
@ -398,4 +390,4 @@ namespace ServiceLib.Models
public string? length { get; set; }
public string? interval { get; set; }
}
}
}