* fix xmltv artwork for jf and emby * proxy jellyfin and emby artwork for xmltv
9 lines
219 B
C#
9 lines
219 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Emby.Queries
|
|
{
|
|
public record GetEmbyConnectionParameters : IRequest<Either<BaseError, EmbyConnectionParametersViewModel>>;
|
|
}
|