mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
8547af9fae
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
13 lines
304 B
C#
13 lines
304 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Books;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideBookInfo
|
|
{
|
|
Tuple<string, Book, List<AuthorMetadata>> GetBookInfo(string id);
|
|
HashSet<string> GetChangedBooks(DateTime startTime);
|
|
}
|
|
}
|