New: Add/remove individual albums

This commit is contained in:
ta264
2019-12-16 21:21:32 +00:00
committed by GitHub
parent 6af29da4c9
commit 8a20c0fa83
128 changed files with 2796 additions and 743 deletions
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource
{
public interface ISearchForNewEntity
{
List<Object> SearchForNewEntity(string title);
}
}