using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model; using ARW.Model.Dto.Api.EmotionManage.EmoticonDatas; using ARW.Model.Models.Business.EmotionManage.EmoticonDatas; using ARW.Model.Vo.Api.EmotionManage.EmoticonDatas; namespace ARW.Service.Api.IBusinessService.EmotionManage.EmoticonDatas { /// /// 表情包接口类Api /// /// @author lwh /// @date 2023-10-29 /// public interface IEmoticonDataServiceApi : IBaseService { /// /// 获取表情包分页列表(Api) /// /// /// Task> GetEmoticonDataListApi(EmoticonDataQueryDtoApi parm); } }