13 lines
148 B
C#
13 lines
148 B
C#
|
using System;
|
||
|
|
||
|
namespace Aurora.Services.Player
|
||
|
{
|
||
|
public enum PlaybackState
|
||
|
{
|
||
|
Playing,
|
||
|
Stopped,
|
||
|
Buffering,
|
||
|
|
||
|
}
|
||
|
}
|