mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-27 09:23:26 +03:00
Move many model classes into new sub-namespaces (ServiceLib.Models.CoreConfigs, ServiceLib.Models.Configs, ServiceLib.Models.Dto, ServiceLib.Models.Entities). Update GlobalUsings in ServiceLib, v2rayN.Desktop, v2rayN and add a tests GlobalUsings file to reference the new namespaces. Adjust static using directives in ClashApiManager and ClashProxiesViewModel to use ServiceLib.Models.Dto. This is a reorganization/rename of files and namespaces with no functional changes.
20 lines
359 B
C#
20 lines
359 B
C#
using System.Collections;
|
|
|
|
namespace ServiceLib.Models.CoreConfigs;
|
|
|
|
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; }
|
|
}
|