#nullable disable
namespace MediaBrowser.Controller.Providers
{
///
/// The lookup info for books.
///
public class BookInfo : ItemLookupInfo
{
///
/// Gets or sets the name of the series the book belongs to.
///
public string SeriesName { get; set; }
}
}