// // HBHttpCacheData.h // wq // // Created by weqia on 13-8-15. // Copyright (c) 2013年 Weqia. All rights reserved. // #import typedef enum { HBHttpCacheDataTypeText=0, HBHttpCacheDataTypeImage=1 }HBHttpCacheDataType; @interface HBHttpCacheData : NSObject @property (nonatomic,strong) NSString * cacheUrl; @property (nonatomic,strong) NSString * cacheData; @property (nonatomic) HBHttpCacheDataType cacheType; @property (nonatomic,strong) NSString * timestamp; @end