astral-api/Astral.ApiServer/Models/Requests/HeartbeatRootRequestModel.cs
Mike 81aa0ec1c0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
WIP heartbeat and user presence
2024-12-15 16:06:14 +00:00

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; }
}