mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
18 lines
479 B
C#
18 lines
479 B
C#
namespace octo_fiesta.Models.Settings;
|
|
|
|
/// <summary>
|
|
/// Configuration for the SquidWTF downloader and metadata service
|
|
/// </summary>
|
|
public class SquidWTFSettings
|
|
{
|
|
/// <summary>
|
|
/// No user auth should be needed for this site.
|
|
/// </summary>
|
|
|
|
/// <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; }
|
|
}
|