diff --git a/src/NzbDrone.Core/Music/Track.cs b/src/NzbDrone.Core/Music/Track.cs index 77fcc4e41..599328c58 100644 --- a/src/NzbDrone.Core/Music/Track.cs +++ b/src/NzbDrone.Core/Music/Track.cs @@ -21,7 +21,7 @@ namespace NzbDrone.Core.Music public string AlbumId { get; set; } public LazyLoaded Artist { get; set; } public string ArtistSpotifyId { get; set; } - public int ArtistId { get; set; } // This is the DB Id of the Artist, not the SpotifyId + public long ArtistId { get; set; } // This is the DB Id of the Artist, not the SpotifyId //public int CompilationId { get; set; } public bool Compilation { get; set; } public int TrackNumber { get; set; } @@ -31,11 +31,6 @@ namespace NzbDrone.Core.Music public bool Monitored { get; set; } public int TrackFileId { get; set; } public DateTime? ReleaseDate { get; set; } - /* - public Ratings Ratings { get; set; } // This might be aplicable as can be pulled from IDv3 tags - public List Images { get; set; }*/ - - //public string SeriesTitle { get; private set; } public LazyLoaded TrackFile { get; set; }