10 lines
163 B
C#
10 lines
163 B
C#
namespace IM_API.Dtos
|
|
{
|
|
public class UpdateUserDto
|
|
{
|
|
public string? NickName { get; set; }
|
|
public string? Avatar { get; set; }
|
|
|
|
}
|
|
}
|