using System; using System.Collections.Generic; using NzbDrone.Core.Music; namespace NzbDrone.Core.MetadataSource { public interface IProvideAlbumInfo { Tuple> GetAlbumInfo(string id); HashSet GetChangedAlbums(DateTime startTime); } }