Files
v2rayN/v2rayN/ServiceLib/Models/ClashConnectionModel.cs
T
2024-08-19 18:15:54 +08:00

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; }
}
}