astral-api/Astral.ApiServer/Models/Responses/HeartbeatResponseModel.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
505 B
C#

// <copyright file="HeartbeatResponseModel.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.Responses;
/// <summary>
/// The response given from a heartbeat request.
/// </summary>
public class HeartbeatResponseModel
{
/// <summary>
/// Session id.
/// </summary>
[JsonPropertyName("session_id")]
public Guid SessionId { get; set; }
}