using System.Collections.Generic; using NzbDrone.Core.Music; namespace NzbDrone.Core.MediaFiles.TrackImport.Identification { public class CandidateAlbumRelease { public CandidateAlbumRelease() { } public CandidateAlbumRelease(AlbumRelease release) { AlbumRelease = release; ExistingTracks = new List(); } public AlbumRelease AlbumRelease { get; set; } public List ExistingTracks { get; set; } } }