Files
Readarr/src/NzbDrone.Core/MediaFiles/RenameBookFilePreview.cs
T
2020-05-13 20:42:22 -04:00

15 lines
396 B
C#

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; }
}
}