astral-api/Astral.ApiServer/Models/Responses/UserProfileResponseModel.cs

20 lines
488 B
C#
Raw Permalink Normal View History

2024-12-15 17:06:14 +01:00
// <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; }
}