Files
2dust_v2rayN/v2rayN/ServiceLib/Models/ClashConnectionModel.cs
T
2024-10-08 09:50:03 +08:00

17 lines
572 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; }
}
}