12345678910111213141516171819202122 |
- //
- // PageResponseInfo.h
- // FirstLink
- //
- // Created by unicode on 14-11-10.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface PageHeader : NSObject
- @property (nonatomic, strong) NSString *pageSize;
- @property (nonatomic, strong) NSString *index; // 服务器返回上数据
- @property (nonatomic, strong) NSString *anchorID;
- @property (nonatomic, strong) NSString *startRow;
- + (PageHeader*)defaultPageHeader;
- + (PageHeader*)parserHeader:(NSDictionary*)json;
- @end
|