This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Backend/Services/PlayerService/StreamingPlaybackState.cs

12 lines
188 B
C#

using System;
namespace Aurora.Backend.Services.PlayerService
{
public enum StreamingPlaybackState
{
Stopped,
Playing,
Buffering,
Paused
}
}