mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08: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; }
|
|
}
|
|
} |