using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface IMusicControlManager { /// /// 发送音乐按键 /// /// 主机 /// 按键 void SendKey(Host host, MusicKey key); } }