mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
- Add SpotifyImportSettings configuration model - Create SpotifyMissingTracksFetcher background service - Inject virtual Spotify playlists into search results - Auto-match tracks from external providers - Update README with feature documentation - Configure sync window and playlist settings
13 lines
419 B
C#
13 lines
419 B
C#
namespace allstarr.Models.Spotify;
|
|
|
|
public class MissingTrack
|
|
{
|
|
public string SpotifyId { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Album { get; set; } = string.Empty;
|
|
public List<string> Artists { get; set; } = new();
|
|
|
|
public string PrimaryArtist => Artists.FirstOrDefault() ?? "";
|
|
public string AllArtists => string.Join(", ", Artists);
|
|
}
|