using System; using System.Collections.Generic; using NzbDrone.Core.Books; namespace NzbDrone.Core.MetadataSource { public interface IProvideBookInfo { Tuple> GetBookInfo(string id); HashSet GetChangedBooks(DateTime startTime); } }