Files
ersatztv/ErsatzTV.Core/Interfaces/Troubleshooting/ITroubleshootingNotifier.cs
T
Jason DoveandGitHub f2b6f5b919 enable graphics engine in playback troubleshooting (#2274)
* enable graphics engine in playback troubleshooting

* fix text subtitles with graphics engine (watermarks)
2025-08-07 18:37:55 +00:00

11 lines
215 B
C#

namespace ErsatzTV.Core.Interfaces.Troubleshooting;
public interface ITroubleshootingNotifier
{
bool IsFailed(Guid sessionId);
void NotifyFailed(Guid sessionId);
void RemoveSession(Guid sessionId);
}