qtcnet-client/QtCNETAPI/Dtos/User/UserUpdateInformationDto.cs
2025-12-07 17:20:35 -08:00

12 lines
387 B
C#

namespace QtCNETAPI.Dtos.User
{
public class UserUpdateInformationDto
{
public string Id { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public string Bio { get; set; } = string.Empty;
public DateTime DateOfBirth { get; set; } = new DateTime();
public int ProfileCosmeticId { get; set; } = 0;
}
}