9 lines
240 B
C#
9 lines
240 B
C#
|
|
namespace PruebaGentle.Core.DTOs;
|
||
|
|
|
||
|
|
public class UpdateUserDto
|
||
|
|
{
|
||
|
|
public string Username { get; set; } = string.Empty;
|
||
|
|
public string Email { get; set; } = string.Empty;
|
||
|
|
public string NombreCompleto { get; set; } = string.Empty;
|
||
|
|
}
|