Files

9 lines
233 B
C#
Raw Permalink Normal View History

2026-08-06 12:58:41 -05:00
using System.Text.Json.Serialization;
namespace SafelyYou.Api;
public record UploadStatsRequest(
[property: JsonPropertyName("sent_at")] DateTimeOffset SentAt,
[property: JsonPropertyName("upload_time")] long UploadTime
);