Files

8 lines
166 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 HeartbeatRequest(
[property: JsonPropertyName("sent_at")] DateTimeOffset SentAt
);