11 lines
308 B
C#
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; }
|
|
} |