11 lines
322 B
C#
11 lines
322 B
C#
|
|
namespace PruebaGentle.Core.DTOs;
|
||
|
|
|
||
|
|
public class UserResponseDto
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public string Username { get; set; } = string.Empty;
|
||
|
|
public string Email { get; set; } = string.Empty;
|
||
|
|
public string NombreCompleto { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaCreacion { get; set; }
|
||
|
|
}
|