diff --git a/octo-fiesta/Models/Settings/SquidWTFSettings.cs b/octo-fiesta/Models/Settings/SquidWTFSettings.cs
new file mode 100644
index 0000000..e562900
--- /dev/null
+++ b/octo-fiesta/Models/Settings/SquidWTFSettings.cs
@@ -0,0 +1,17 @@
+namespace octo_fiesta.Models.Settings;
+
+///
+/// Configuration for the SquidWTF downloader and metadata service
+///
+public class SquidWTFSettings
+{
+ ///
+ /// No user auth should be needed for this site.
+ ///
+
+ ///
+ /// 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; }
+}