Files

11 lines
322 B
C#
Raw Permalink Normal View History

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; }
}