IMessageServerAppService.cs 547 B

12345678910111213141516171819202122
  1. using System.Threading.Tasks;
  2. using Abp.Web.Models;
  3. using WeEngine.CommonDto;
  4. using WePlatform.Configuration;
  5. namespace WePlatform.DataCenter.MessageServer
  6. {
  7. /// <summary>
  8. /// 消息服务
  9. /// </summary>
  10. [ShowApi]
  11. [DontWrapResult]
  12. public interface IMessageServerAppService :IDataCenterAppService
  13. {
  14. /// <summary>
  15. /// 获取客户端配置数据
  16. /// </summary>
  17. /// <param name="appId"></param>
  18. /// <returns></returns>
  19. Task<MsgClientDto> GetClient(string appId);
  20. }
  21. }