astral-api/Astral.ApiServer/Models/Requests/HeartbeatRootRequestModel.cs

20 lines
517 B
C#
Raw Permalink Normal View History

2024-12-15 17:06:14 +01:00
// <copyright file="HeartbeatRootRequestModel.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
using System.Text.Json.Serialization;
namespace Astral.ApiServer.Models.Requests;
/// <summary>
/// Heartbeat request model.
/// </summary>
public class HeartbeatRootRequestModel
{
/// <summary>
/// Heartbeat location information.
/// </summary>
[JsonPropertyName("location")]
public HeartbeatModel Location { get; set; }
}