mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
8090799ccc
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.
17 lines
516 B
C#
17 lines
516 B
C#
namespace ServiceLib.Models.Dto;
|
|
|
|
public class ClashConnectionModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Network { get; set; }
|
|
public string? Type { get; set; }
|
|
public string? Host { get; set; }
|
|
public ulong Upload { get; set; }
|
|
public ulong Download { get; set; }
|
|
public string? UploadTraffic { get; set; }
|
|
public string? DownloadTraffic { get; set; }
|
|
public double Time { get; set; }
|
|
public string? Elapsed { get; set; }
|
|
public string? Chain { get; set; }
|
|
}
|