mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-27 13:09:42 +05:00
12 lines
231 B
C#
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; }
|
|
}
|
|
} |