using System.Collections.Generic; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Profiles.Metadata; namespace NzbDrone.Core.MediaFiles.TrackImport.Identification { public class BasicLocalTrack { public string Path { get; set; } public ParsedTrackInfo FileTrackInfo { get; set; } } public class ArtistTestCase { public string Artist { get; set; } public MetadataProfile MetadataProfile { get; set; } } public class AcoustIdTestCase { public string Path { get; set; } public List AcoustIdResults { get; set; } } public class IdTestCase { public List ExpectedMusicBrainzReleaseIds { get; set; } public List LibraryArtists { get; set; } public string Artist { get; set; } public string Album { get; set; } public string Release { get; set; } public bool NewDownload { get; set; } public bool SingleRelease { get; set; } public List Tracks { get; set; } public List Fingerprints { get; set; } } }