19 lines
517 B
C#
19 lines
517 B
C#
// <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; }
|
|
}
|