MGShowVIPCell.h 543 B

12345678910111213141516171819202122232425
  1. //
  2. // MGShowVIPCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/19.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGShowVipModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MGShowVIPCell : UITableViewCell
  12. @property(nonatomic, strong) UIImageView *headImgView;
  13. @property(nonatomic, strong) UILabel *nickNameL;
  14. @property(nonatomic, strong) UIImageView *sexImgView;
  15. @property(nonatomic, strong) UIImageView *levelImgView;
  16. -(void)resetModel:(MGShowVipModel *)model;
  17. @end
  18. NS_ASSUME_NONNULL_END