mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-28 23:06:43 -04:00
8547af9fae
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
15 lines
396 B
C#
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; }
|
|
}
|
|
}
|