// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using System.Text.Json.Serialization; namespace Astral.ApiServer.Models.Requests; /// /// Heartbeat request model. /// public class HeartbeatRootRequestModel { /// /// Heartbeat location information. /// [JsonPropertyName("location")] public HeartbeatModel Location { get; set; } }