9 lines
237 B
C#
9 lines
237 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SafelyYou.Api;
|
|
|
|
public record GetDeviceStatsResponse(
|
|
[property: JsonPropertyName("avg_upload_time")] string AvgUploadTime,
|
|
[property: JsonPropertyName("uptime")] double Uptime
|
|
);
|