12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Request.App.IM;
- namespace GxPress.Service.Interface
- {
- public interface IGroupChatUserService : IService
- {
-
-
-
-
-
- Task<bool> DeleteAsync(List<int> groupChatUserIds);
- Task<bool> AddUsers(InsertGroupChatUsersRequest request);
-
-
-
-
-
- Task<bool> InsertAsync(InsertGroupChatUsersRequest request);
- }
- }
|