mirror of
https://github.com/Readarr/Readarr
synced 2026-05-05 19:20:27 +02:00
Changed AristId to a long
This commit is contained in:
parent
fbb6691ea1
commit
d1eb9ff16c
1 changed files with 1 additions and 6 deletions
|
|
@ -21,7 +21,7 @@ public Track()
|
||||||
public string AlbumId { get; set; }
|
public string AlbumId { get; set; }
|
||||||
public LazyLoaded<Artist> Artist { get; set; }
|
public LazyLoaded<Artist> Artist { get; set; }
|
||||||
public string ArtistSpotifyId { 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 int CompilationId { get; set; }
|
||||||
public bool Compilation { get; set; }
|
public bool Compilation { get; set; }
|
||||||
public int TrackNumber { get; set; }
|
public int TrackNumber { get; set; }
|
||||||
|
|
@ -31,11 +31,6 @@ public Track()
|
||||||
public bool Monitored { get; set; }
|
public bool Monitored { get; set; }
|
||||||
public int TrackFileId { get; set; }
|
public int TrackFileId { get; set; }
|
||||||
public DateTime? ReleaseDate { 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; }
|
public LazyLoaded<TrackFile> TrackFile { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue