WFCUConversationSettingMemberCell.h 528 B

1234567891011121314151617
  1. //
  2. // ConversationSettingMemberCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/11/3.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatClient/WFCChatClient.h>
  10. @interface WFCUConversationSettingMemberCell : UICollectionViewCell
  11. @property(nonatomic, strong) UIImageView *headerImageView;
  12. @property(nonatomic, strong) UILabel *nameLabel;
  13. @property(nonatomic, strong) UILabel *domainLabel;
  14. - (void)setModel:(NSObject *)model withType:(WFCCConversationType)type;
  15. @end