using System.Collections.Generic; namespace NzbDrone.Core.MediaFiles { public class RenameBookFilePreview { public int AuthorId { get; set; } public int BookId { get; set; } public List TrackNumbers { get; set; } public int BookFileId { get; set; } public string ExistingPath { get; set; } public string NewPath { get; set; } } }