using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain { public enum MusicKey { /// /// 音乐播放 /// Play = 0x01, /// /// 暂停播放 /// Pause = 0x02, /// /// 上一首 /// Prev = 0x03, /// /// 下一首 /// Next = 0x04, /// /// 音量+ /// VoiceInc = 0x05, /// /// 音量- /// VoiceDec = 0x06, /// /// 静音 /// Mute = 0x07, /// /// 取消静音 /// Unmute = 0x08, /// /// 顺序播放 /// SequentialPlay = 0x09, /// /// 随机播放 /// RandomPlay = 0x0A, /// /// 单曲播放 /// SingleCycle = 0x0B, } }