tangtaoit 7b0c1bc743 init
2023-05-25 10:32:00 +08:00

33 lines
503 B
Objective-C

//
// WKMessageFileUploadTask.h
// WuKongIMSDK
//
// Created by tt on 2020/1/15.
//
#import <Foundation/Foundation.h>
#import "WKTaskProto.h"
#import "WKMessage.h"
#import "WKBaseTask.h"
NS_ASSUME_NONNULL_BEGIN
@interface WKMessageFileUploadTask : WKBaseTask
-(instancetype) initWithMessage:(WKMessage*)message;
// 消息
@property(nonatomic,strong) WKMessage *message;
/**
上传后返回的路径
*/
@property(nullable,nonatomic,strong) NSString *remoteUrl;
@end
NS_ASSUME_NONNULL_END