Files
SafelyYouCodingChallenge/dotnet/SafelyYou/Api/GetDeviceStatsResponse.cs
T

9 lines
237 B
C#
Raw Normal View History

2026-08-06 12:58:41 -05:00
using System.Text.Json.Serialization;
namespace SafelyYou.Api;
public record GetDeviceStatsResponse(
[property: JsonPropertyName("avg_upload_time")] string AvgUploadTime,
[property: JsonPropertyName("uptime")] double Uptime
);