14 lines
287 B
C#
14 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Domain;
|
|
|
|
namespace RCUHost
|
|
{
|
|
public interface IAskRoomStatusChangedReceiver
|
|
{
|
|
void SendRoomStatusSelf(string HostNumber, string Mac, RoomStatus status,byte[] FrameNo);
|
|
}
|
|
}
|