mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-30 16:53:05 -05:00
Changed AristId to a long
This commit is contained in:
@@ -21,7 +21,7 @@ public Track()
|
||||
public string AlbumId { get; set; }
|
||||
public LazyLoaded<Artist> 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 @@ public Track()
|
||||
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<MediaCover.MediaCover> Images { get; set; }*/
|
||||
|
||||
//public string SeriesTitle { get; private set; }
|
||||
|
||||
public LazyLoaded<TrackFile> TrackFile { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user