Files
ersatztv/ErsatzTV.Core/Interfaces/Repositories/IEmbyCollectionRepository.cs
T
Jason DoveandGitHub d67251bfa0 jellyfin and emby collection sync (#752)
* sync jellyfin and emby collections

* update changelog
2022-04-22 13:33:35 -05:00

14 lines
473 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Repositories;
public interface IEmbyCollectionRepository
{
Task<List<EmbyCollection>> GetCollections();
Task<bool> AddCollection(EmbyCollection collection);
Task<bool> RemoveCollection(EmbyCollection collection);
Task<List<int>> RemoveAllTags(EmbyCollection collection);
Task<int> AddTag(MediaItem item, EmbyCollection collection);
Task<bool> SetEtag(EmbyCollection collection);
}