Files
ersatztv/ErsatzTV.Core/Interfaces/Repositories/IJellyfinTelevisionRepository.cs
T
Jason DoveandGitHub 9462156148 fix mysql playout builds (#2352)
* more cancellation tokens and fixes

* so much cancellation token

* fix mysql playout builds
2025-08-27 18:09:56 +00:00

17 lines
520 B
C#

using ErsatzTV.Core.Domain;
using ErsatzTV.Core.Jellyfin;
namespace ErsatzTV.Core.Interfaces.Repositories;
public interface IJellyfinTelevisionRepository : IMediaServerTelevisionRepository<JellyfinLibrary, JellyfinShow,
JellyfinSeason,
JellyfinEpisode, JellyfinItemEtag>
{
Task<Option<JellyfinShowTitleItemIdResult>> GetShowTitleItemId(
int libraryId,
int showId,
CancellationToken cancellationToken);
}
public record JellyfinShowTitleItemIdResult(string Title, string ItemId);