9 lines
235 B
C#
9 lines
235 B
C#
namespace MetaCourse.Api.DTOs.Users;
|
|
|
|
public class RegisterUserDto
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|