QNIUploadServer.h 539 B

12345678910111213141516171819
  1. //
  2. // QNIUploadServer.h
  3. // QiniuSDK
  4. //
  5. // Created by yangsen on 2020/7/3.
  6. // Copyright © 2020 Qiniu. All rights reserved.
  7. //
  8. #import<Foundation/Foundation.h>
  9. @protocol QNUploadServer <NSObject>
  10. @property(nonatomic, copy, nullable, readonly)NSString *serverId;
  11. @property(nonatomic, copy, nullable, readonly)NSString *ip;
  12. @property(nonatomic, copy, nullable, readonly)NSString *host;
  13. @property(nonatomic, copy, nullable, readonly)NSString *source;
  14. @property(nonatomic,strong, nullable, readonly)NSNumber *ipPrefetchedTime;
  15. @end