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