| 12345678910111213141516171819202122 |
- using System.Threading.Tasks;
- using Abp.Web.Models;
- using WeEngine.CommonDto;
- using WePlatform.Configuration;
- namespace WePlatform.DataCenter.MessageServer
- {
- /// <summary>
- /// 消息服务
- /// </summary>
- [ShowApi]
- [DontWrapResult]
- public interface IMessageServerAppService :IDataCenterAppService
- {
- /// <summary>
- /// 获取客户端配置数据
- /// </summary>
- /// <param name="appId"></param>
- /// <returns></returns>
- Task<MsgClientDto> GetClient(string appId);
- }
- }
|