KTVHCDataCacheItemZone.h 423 B

12345678910111213141516171819
  1. //
  2. // KTVHCDataCacheItemZone.h
  3. // KTVHTTPCache
  4. //
  5. // Created by Single on 2017/8/13.
  6. // Copyright © 2017年 Single. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface KTVHCDataCacheItemZone : NSObject
  10. + (instancetype)new NS_UNAVAILABLE;
  11. - (instancetype)init NS_UNAVAILABLE;
  12. @property (nonatomic, assign, readonly) long long offset;
  13. @property (nonatomic, assign, readonly) long long length;
  14. @end