astral-api/Astral.ApiServer/Models/UserProfileModel.cs

44 lines
1.1 KiB
C#
Raw Normal View History

2024-12-15 17:06:14 +01:00
// <copyright file="UserProfileModel.cs" company="alveus.dev">
2024-12-14 18:48:03 +01:00
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
using System.Text.Json.Serialization;
namespace Astral.ApiServer.Models;
/// <summary>
/// User profile request result.
/// </summary>
2024-12-15 17:06:14 +01:00
public class UserProfileModel
2024-12-14 18:48:03 +01:00
{
/// <summary>
/// Account id (Even used?).
/// </summary>
[JsonPropertyName("accountId")]
public Guid AccountId { get; set; }
/// <summary>
/// Username.
/// </summary>
[JsonPropertyName("username")]
public string Username { get; set; }
/// <summary>
/// Discourse api key (Even used?).
/// </summary>
[JsonPropertyName("discourse_api_key")]
public string DiscourseApiKey { get; set; }
/// <summary>
/// XMPP Password (Even used?).
/// </summary>
[JsonPropertyName("xmpp_password")]
public string XmppPassword { get; set; }
2024-12-15 17:06:14 +01:00
/// <summary>
/// Wallet id (Even used?).
/// </summary>
[JsonPropertyName("wallet_id")]
public Guid WalletId { get; set; }
2024-12-14 18:48:03 +01:00
}