Files
ersatztv/ErsatzTV.Core/Notifications/PlaybackTroubleshootingCompletedNotification.cs
T
Jason DoveandGitHub 7c2083d3f2 add playback troubleshooting speed indicator (#2521)
* more api fixes

* add playback troubleshooting speed indicator
2025-10-13 11:25:56 -05:00

9 lines
220 B
C#

using MediatR;
namespace ErsatzTV.Core.Notifications;
public record PlaybackTroubleshootingCompletedNotification(
int ExitCode,
Option<Exception> MaybeException,
Option<double> MaybeSpeed) : INotification;