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