123456789101112131415161718 |
- //
- // VIContentInfo.h
- // VIMediaCacheDemo
- //
- // Created by Vito on 4/21/16.
- // Copyright © 2016 Vito. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface VIContentInfo : NSObject <NSCoding>
- @property (nonatomic, copy) NSString *contentType;
- @property (nonatomic, assign) BOOL byteRangeAccessSupported;
- @property (nonatomic, assign) unsigned long long contentLength;
- @property (nonatomic) unsigned long long downloadedContentLength;
- @end
|