add configurable playlist names env var

This commit is contained in:
2026-01-31 19:37:10 -05:00
parent bc4faead74
commit 3f3e1b708d
3 changed files with 20 additions and 12 deletions

View File

@@ -36,4 +36,12 @@ public class SpotifyImportSettings
/// Get IDs from Jellyfin playlist URLs
/// </summary>
public List<string> PlaylistIds { get; set; } = new();
/// <summary>
/// Comma-separated list of playlist names (must match Spotify Import plugin format)
/// Example: "Discover_Weekly,Release_Radar"
/// Must be in same order as PlaylistIds
/// Plugin replaces spaces with underscores in filenames
/// </summary>
public List<string> PlaylistNames { get; set; } = new();
}