9 lines
262 B
C#
9 lines
262 B
C#
namespace Lactose.Dtos.User;
|
|
|
|
public class UserRegisterDto {
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
}
|