ReleaseAtPeopleCell.h 462 B

123456789101112131415161718192021
  1. //
  2. // ReleaseAtPeopleCell.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/11/28.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PersonCenterUserModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ReleaseAtPeopleCell : UITableViewCell
  12. @property(nonatomic, strong) UIImageView *iconImageView;
  13. @property(nonatomic, strong) UILabel *nickNameLabel;
  14. @property(nonatomic, strong) PersonCenterUserModel *user;
  15. @end
  16. NS_ASSUME_NONNULL_END