mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
93ba5ade9e
Co-Authored-By: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com>
14 lines
382 B
C#
14 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Books;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideAuthorInfo
|
|
{
|
|
Author GetAuthorInfo(string readarrId, bool useCache = true);
|
|
Author GetAuthorAndBooks(string readarrId, double minPopularity = 0);
|
|
HashSet<string> GetChangedAuthors(DateTime startTime);
|
|
}
|
|
}
|