123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using GxPress.Request.App.IM;
- namespace GxPress.Service.Interface.GroupChat
- {
- public interface IGroupChatService : IService
- {
-
-
-
-
-
- Task<bool> InsertUsersIntoGroupChatAsync(InsertGroupChatUsersRequest request);
-
-
-
-
-
- Task<bool> DeleteAsync(int groupChatId);
- }
- }
|