Files
PruebaGentle/Backend/PruebaGentle.Core/DTOs/CreateUserDto.cs

10 lines
297 B
C#
Raw Normal View History

namespace PruebaGentle.Core.DTOs;
public class CreateUserDto
{
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string NombreCompleto { get; set; } = string.Empty;
}