namespace octo_fiesta.Models.Settings; /// /// Configuration for the Qobuz downloader and metadata service /// public class QobuzSettings { /// /// Qobuz user authentication token /// Obtained from browser's localStorage after logging into play.qobuz.com /// public string? UserAuthToken { get; set; } /// /// Qobuz user ID /// Obtained from browser's localStorage after logging into play.qobuz.com /// public string? UserId { 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; } }