mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03: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; }
|
|
}
|
|
} |