Files
Knots/Knots/DTO/User/UpdateUserDto.cs
2026-03-12 16:24:32 +01:00

11 lines
308 B
C#

namespace Knots.DTO.User;
public class UpdateUserDto
{
public string? Username { get; set; }
public string? Description {get; set;}
public string? Password { get; set; }
public string? Email { get; set; }
public string? Tel { get; set; }
public string? ProfilePicture { get; set; }
}