19 lines
368 B
C#
19 lines
368 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using Domain;
|
|||
|
|
using RCUHost.Protocols;
|
|||
|
|
|
|||
|
|
namespace RCUHost
|
|||
|
|
{
|
|||
|
|
public interface IUnlockControlReceiver
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 发送开锁命令给指定主机主机
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="host"></param>
|
|||
|
|
void Send(Host host);
|
|||
|
|
}
|
|||
|
|
}
|