Lidarr/src/NzbDrone.Core/ImportLists/IProcessImportListResponse.cs

11 lines
255 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.ImportLists
{
public interface IParseImportListResponse
{
IList<ImportListItemInfo> ParseResponse(ImportListResponse importListResponse);
}
}