JXRoomMemberListCell.h 506 B

12345678910111213141516171819202122232425
  1. //
  2. // JXRoomMemberListCell.h
  3. // shiku_im
  4. //
  5. // Created by p on 2018/7/3.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXRoomMemberListCell : UITableViewCell
  10. @property (nonatomic, strong) memberData *data;
  11. @property (nonatomic, assign) int role;
  12. @property (nonatomic, strong) roomData *room;
  13. @property (nonatomic, strong) NSString *curManager;
  14. @property (nonatomic, strong) UIView *lineView;
  15. @property (nonatomic, strong) UILabel *onlinStatus;
  16. @end