namespace Funique
{
///
/// Player current state
/// Order is important
/// The order use in user interface order
/// ------------------------------------------------
/// 用戶現在狀態
/// 順序重要
/// 順序用於 使用者介面的排版順序
///
public enum PlayerState
{
///
/// Media playing
/// ------------------------------------------------
/// 播放中
///
Playing,
///
/// Media pause
/// ------------------------------------------------
/// 暫停中
///
Pause,
///
/// Media stop
/// ------------------------------------------------
/// 停止中
///
Stop
}
}