11 lines
331 B
C#
11 lines
331 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();
|
|
}
|
|
}
|