Files
Archive/v2rayn/v2rayN/ServiceLib/Models/SpeedTestResult.cs
T
2024-08-19 20:32:21 +02:00

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