19 lines
431 B
C#
19 lines
431 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using Domain;
|
|||
|
|
|
|||
|
|
namespace RCUHost
|
|||
|
|
{
|
|||
|
|
public interface IConnectingRoomReceiver
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设置/取消连通房
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="hostList"></param>
|
|||
|
|
/// <param name="cancel">false/设置连通房,true/取消连通房,默认false</param>
|
|||
|
|
void ConnectRoom(IList<Host> hostList, bool cancel = false);
|
|||
|
|
}
|
|||
|
|
}
|