mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07: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 @@ namespace NzbDrone.Core.Music
|
||||||
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 @@ namespace NzbDrone.Core.Music
|
||||||
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…
Add table
Add a link
Reference in a new issue