2024-12-14 13:54:56 +00:00
|
|
|
package com.sheepit.client.datamodel.server;
|
2021-11-15 14:09:41 +00:00
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.ToString;
|
|
|
|
|
import org.simpleframework.xml.Attribute;
|
|
|
|
|
import org.simpleframework.xml.Root;
|
|
|
|
|
|
|
|
|
|
@Root(strict = false, name = "result") @Data @ToString public class SpeedTestTargetResult {
|
|
|
|
|
|
|
|
|
|
@Attribute private String target;
|
|
|
|
|
|
|
|
|
|
@Attribute private Long speed;
|
|
|
|
|
|
|
|
|
|
@Attribute private Integer ping;
|
|
|
|
|
|
|
|
|
|
}
|