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

// <copyright file="UserProfileResponseModel.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>
/// User response model.
/// </summary>
public class UserProfileResponseModel
{
/// <summary>
/// User profile.
/// </summary>
[JsonPropertyName("user")]
public UserProfileModel User { get; set; }
}