namespace QuotifyBE.DTOs; public record class UserInfoDTO { public int Id { get; set; } required public string Name { get; set; } required public string Email { get; set; } public int Role { get; set; } public string? RoleName { get; set; } };