using System; using System.Collections.Generic; namespace NzbDrone.Core.MediaFiles { public class RetagTrackFilePreview { public int ArtistId { get; set; } public int AlbumId { get; set; } public List TrackNumbers { get; set; } public int TrackFileId { get; set; } public string Path { get; set; } public Dictionary> Changes { get; set; } } }