using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; using RCUHost.Protocols; namespace RCUHost { public interface IUnlockControlReceiver { /// /// 发送开锁命令给指定主机主机 /// /// void Send(Host host); } }