qtcnet-client/QtCNETAPI/Dtos/User/UserInformationDto.cs
Moonbase 0b1b7826b5 Implement Tags
Implement Text Status
Rename Windows To Not Have Service Name
2025-12-14 13:21:54 -08:00

20 lines
847 B
C#

namespace QtCNETAPI.Dtos.User
{
public class UserInformationDto
{
public string Id { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public string ProfilePicture { get; set; } = string.Empty;
public string Bio { get; set; } = string.Empty;
public string Role { get; set; } = string.Empty;
public DateTime DateOfBirth { get; set; } = new DateTime();
public DateTime CreatedAt { get; set; } = new DateTime();
public DateTime LastLogin { get; set; } = new DateTime();
public int Status { get; set; } = 0;
public int CurrencyAmount { get; set; } = 0;
public int ProfileCosmeticId { get; set; } = 0;
public string TextStatus { get; set; } = string.Empty;
public string[] Tags { get; set; } = [];
}
}