You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/MediaFiles/RenameBookFilePreview.cs

15 lines
396 B

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