multiple artists big fix!

This commit is contained in:
2026-02-02 14:35:53 -05:00
parent 97975f1e08
commit ccbc9cf859
3 changed files with 64 additions and 22 deletions

View File

@@ -14,6 +14,11 @@ public class Song
public string Title { get; set; } = string.Empty;
public string Artist { get; set; } = string.Empty;
public string? ArtistId { get; set; }
/// <summary>
/// All artists for this track (main + featured). For display in Jellyfin clients.
/// </summary>
public List<string> Artists { get; set; } = new();
public string Album { get; set; } = string.Empty;
public string? AlbumId { get; set; }
public int? Duration { get; set; } // In seconds