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