Files
Web_CRICS_Server_VS2010_Prod/RCUHost/IConnectingRoomReceiver.cs
2025-12-11 09:17:16 +08:00

19 lines
431 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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);
}
}