Files
Hyperbar/Hyperbar.Widget.MediaController.Windows/PlaybackStatus.cs
T
2024-01-28 14:57:56 +00:00

11 lines
160 B
C#

namespace Hyperbar.Widget.MediaController.Windows;
public enum PlaybackStatus
{
Closed,
Opened,
Changing,
Stopped,
Playing,
Paused
}