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/RetagBookFilePreview.cs

16 lines
455 B

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.MediaFiles
{
public class RetagBookFilePreview
{
public int AuthorId { get; set; }
public int BookId { get; set; }
public List<int> TrackNumbers { get; set; } = new List<int>();
public int BookFileId { get; set; }
public string Path { get; set; }
public Dictionary<string, Tuple<string, string>> Changes { get; set; }
}
}