12 lines
188 B
C#
12 lines
188 B
C#
|
using System;
|
|||
|
namespace Aurora.Backend.Services.PlayerService
|
|||
|
{
|
|||
|
public enum StreamingPlaybackState
|
|||
|
{
|
|||
|
Stopped,
|
|||
|
Playing,
|
|||
|
Buffering,
|
|||
|
Paused
|
|||
|
}
|
|||
|
}
|