43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
// <copyright file="UserProfileModel.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;
|
|
|
|
/// <summary>
|
|
/// User profile request result.
|
|
/// </summary>
|
|
public class UserProfileModel
|
|
{
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// Wallet id (Even used?).
|
|
/// </summary>
|
|
[JsonPropertyName("wallet_id")]
|
|
public Guid WalletId { get; set; }
|
|
}
|