using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface ITvControlManager { /// /// 发送电视按键 /// /// 主机 /// 按键 void SendKey(Host host, TvKey key); } }