1234567891011121314151617181920212223242526 |
- //
- // WFCUAppService.h
- // WFChatUIKit
- //
- // Created by Heavyrain Lee on 2019/10/22.
- // Copyright © 2019 WildFireChat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "WFCUGroupAnnouncement.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol WFCUAppServiceProvider <NSObject>
- - (void)getGroupAnnouncement:(NSString *)groupId
- success:(void(^)(WFCUGroupAnnouncement *))successBlock
- error:(void(^)(int error_code))errorBlock;
- - (void)updateGroup:(NSString *)groupId
- announcement:(NSString *)announcement
- success:(void(^)(long timestamp))successBlock
- error:(void(^)(int error_code))errorBlock;
- @end
- NS_ASSUME_NONNULL_END
|