VIContentInfo.h 463 B

123456789101112131415161718
  1. //
  2. // VIContentInfo.h
  3. // VIMediaCacheDemo
  4. //
  5. // Created by Vito on 4/21/16.
  6. // Copyright © 2016 Vito. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface VIContentInfo : NSObject <NSCoding>
  10. @property (nonatomic, copy) NSString *contentType;
  11. @property (nonatomic, assign) BOOL byteRangeAccessSupported;
  12. @property (nonatomic, assign) unsigned long long contentLength;
  13. @property (nonatomic) unsigned long long downloadedContentLength;
  14. @end