aurora/aurora-sharp-desktop/Aurora/Services/Player/PlaybackState.cs

13 lines
148 B
C#
Raw Normal View History

2021-03-06 04:10:12 +00:00
using System;
namespace Aurora.Services.Player
{
public enum PlaybackState
{
Playing,
Stopped,
Buffering,
}
}