HMHotModel.h 504 B

123456789101112131415161718192021
  1. //
  2. // HMHotModel.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/7/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseModel.h"
  9. #import "HMHotBannerModel.h"
  10. #import "HMHotItemModel.h"
  11. @interface HMHotModel : BGBaseModel
  12. @property (nonatomic, strong) NSMutableArray<HMHotBannerModel *> *banner;
  13. @property (nonatomic, strong) NSMutableArray<HMHotItemModel *> *list;
  14. @property (nonatomic, assign) NSInteger has_next;
  15. @property (nonatomic, assign) NSInteger page;
  16. @end