10 lines
213 B
C#
10 lines
213 B
C#
namespace IM_API.Dtos
|
|
{
|
|
public class RegisterRequestDto
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string? NickName { get; set; }
|
|
}
|
|
}
|