9 lines
220 B
C#
9 lines
220 B
C#
using MediatR;
|
|
|
|
namespace ErsatzTV.Core.Notifications;
|
|
|
|
public record PlaybackTroubleshootingCompletedNotification(
|
|
int ExitCode,
|
|
Option<Exception> MaybeException,
|
|
Option<double> MaybeSpeed) : INotification;
|