| 123456789101112131415161718192021 |
- //
- // HMHotModel.h
- // BuguLive
- //
- // Created by xfg on 2017/7/5.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGBaseModel.h"
- #import "HMHotBannerModel.h"
- #import "HMHotItemModel.h"
- @interface HMHotModel : BGBaseModel
- @property (nonatomic, strong) NSMutableArray<HMHotBannerModel *> *banner;
- @property (nonatomic, strong) NSMutableArray<HMHotItemModel *> *list;
- @property (nonatomic, assign) NSInteger has_next;
- @property (nonatomic, assign) NSInteger page;
- @end
|