namespace octo_fiesta.Models; /// /// Configuration for the Deezer downloader and metadata service /// public class DeezerSettings { /// /// Deezer ARL token (required for downloading) /// Obtained from browser cookies after logging into deezer.com /// public string? Arl { get; set; } /// /// Fallback ARL token (optional) /// Used if the primary ARL token fails /// public string? ArlFallback { get; set; } /// /// Preferred audio quality: FLAC, MP3_320, MP3_128 /// If not specified or unavailable, the highest available quality will be used. /// public string? Quality { get; set; } }