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

12 lines
No EOL
231 B
C#

namespace ServiceLib.Models
{
[Serializable]
public class SpeedTestResult
{
public string? IndexId { get; set; }
public string? Delay { get; set; }
public string? Speed { get; set; }
}
}