QNUploadRequestState.h 448 B

12345678910111213141516171819202122232425
  1. //
  2. // QNUploadRequestState.h
  3. // QiniuSDK_Mac
  4. //
  5. // Created by yangsen on 2020/11/17.
  6. // Copyright © 2020 Qiniu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface QNUploadRequestState : NSObject
  11. // old server 不验证tls sni
  12. @property(nonatomic, assign)BOOL isUseOldServer;
  13. // 用户是否取消
  14. @property(nonatomic, assign)BOOL isUserCancel;
  15. - (instancetype)copy;
  16. @end
  17. NS_ASSUME_NONNULL_END