mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-06 15:22:07 +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.
22 lines
376 B
C#
22 lines
376 B
C#
namespace ServiceLib.Models.Dto;
|
|
|
|
[Serializable]
|
|
public class ServerSpeedItem : ServerStatItem
|
|
{
|
|
public long ProxyUp { get; set; }
|
|
|
|
public long ProxyDown { get; set; }
|
|
|
|
public long DirectUp { get; set; }
|
|
|
|
public long DirectDown { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class TrafficItem
|
|
{
|
|
public ulong Up { get; set; }
|
|
|
|
public ulong Down { get; set; }
|
|
}
|