namespace API.DTOs.Scrobbling; /// /// Information about a User's MAL connection /// public sealed record MalUserInfoDto { public required string Username { get; set; } /// /// This is actually the Client Id /// public required string AccessToken { get; set; } }