mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 19:23:11 +00:00
11 lines
199 B
C#
11 lines
199 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class SpeedTestResult
|
|
{
|
|
public string? IndexId { get; set; }
|
|
|
|
public string? Delay { get; set; }
|
|
|
|
public string? Speed { get; set; }
|
|
}
|