new_bgmcategoryCell.h 503 B

1234567891011121314151617
  1. //
  2. // new_bgmcategoryCell.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/5/25.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface new_bgmcategoryModel :NSObject
  10. @property (nonatomic, copy)NSString *type_id/*分类id*/,
  11. *type_name/*分类名称*/,
  12. *icon/*分类图标*/;
  13. @end
  14. @interface new_bgmcategoryCell : UICollectionViewCell
  15. @property (nonatomic, strong)new_bgmcategoryModel *model;
  16. @end