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