WFCUSelectedUserCollectionViewCell.h 486 B

12345678910111213141516171819
  1. //
  2. // SelectedUserCollectionViewCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by Zack Zhang on 2020/4/4.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WFCUSelectedUserInfo.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCUSelectedUserCollectionViewCell : UICollectionViewCell
  12. @property (nonatomic, strong)WFCUSelectedUserInfo *user;
  13. @property (nonatomic, strong)UIImageView *imgV;
  14. @property (nonatomic, assign)BOOL isSmall;
  15. @end
  16. NS_ASSUME_NONNULL_END