mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
26 lines
744 B
C#
26 lines
744 B
C#
namespace octo_fiesta.Models;
|
|
|
|
/// <summary>
|
|
/// Configuration for the Deezer downloader and metadata service
|
|
/// </summary>
|
|
public class DeezerSettings
|
|
{
|
|
/// <summary>
|
|
/// Deezer ARL token (required for downloading)
|
|
/// Obtained from browser cookies after logging into deezer.com
|
|
/// </summary>
|
|
public string? Arl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Fallback ARL token (optional)
|
|
/// Used if the primary ARL token fails
|
|
/// </summary>
|
|
public string? ArlFallback { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preferred audio quality: FLAC, MP3_320, MP3_128
|
|
/// If not specified or unavailable, the highest available quality will be used.
|
|
/// </summary>
|
|
public string? Quality { get; set; }
|
|
}
|