2
0

ChatroomItemCell.h 432 B

12345678910111213141516
  1. //
  2. // ChatroomItemCell.h
  3. // WildFireChat
  4. //
  5. // Created by heavyrain lee on 2018/8/24.
  6. // Copyright © 2018 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatClient/WFCChatClient.h>
  10. @interface ChatroomItemCell : UICollectionViewCell
  11. @property(nonatomic, strong)UIImageView *portraitIV;
  12. @property(nonatomic, strong)UILabel *titleLable;
  13. @property(nonatomic, strong)WFCCChatroomInfo *chatroomInfo;
  14. @end