mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 13:42:24 +00:00
19 lines
347 B
C#
19 lines
347 B
C#
using System.Collections;
|
|
|
|
namespace ServiceLib.Models;
|
|
|
|
internal class V2rayMetricsVars
|
|
{
|
|
public V2rayMetricsVarsStats? stats { get; set; }
|
|
}
|
|
|
|
public class V2rayMetricsVarsStats
|
|
{
|
|
public Hashtable? outbound { get; set; }
|
|
}
|
|
|
|
public class V2rayMetricsVarsLink
|
|
{
|
|
public long downlink { get; set; }
|
|
public long uplink { get; set; }
|
|
}
|