mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 07:44:47 +03:00
17 lines
564 B
C#
17 lines
564 B
C#
namespace ServiceLib.Models
|
|
{
|
|
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; }
|
|
}
|
|
} |