Files
Web_CRICS_Server_VS2010_Prod/RCUHost/IConnectingRoomReceiver.cs

19 lines
431 B
C#
Raw Permalink Normal View History

2025-12-11 09:17:16 +08:00
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);
}
}