Files
Readarr/src/NzbDrone.Core/MetadataSource/IProvideAuthorInfo.cs
T
2021-01-28 23:43:19 -05:00

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);
}
}