using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application.Service.LiveChat { /// /// 即时聊天接口 /// public interface ILiveChatService { Task CreateLinkCaht(); } }