aurora/aurora-sharp-desktop/Aurora/Services/Player/PlaybackState.cs
2021-03-05 23:10:12 -05:00

13 lines
148 B
C#

using System;
namespace Aurora.Services.Player
{
public enum PlaybackState
{
Playing,
Stopped,
Buffering,
}
}