Files
Hyperbar/Hyperbar.Windows.MediaController/MediaController.cs
T
2024-01-10 20:59:55 +00:00

24 lines
494 B
C#

using Windows.Media.Control;
namespace Hyperbar.Windows.Primary;
public class MediaController :
INotificationHandler<PlayRequest>,
IDisposable
{
public MediaController(GlobalSystemMediaTransportControlsSession session)
{
}
public void Dispose()
{
throw new NotImplementedException();
}
public ValueTask Handle(PlayRequest notification,
CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}