12345678910111213141516171819202122232425 |
- //
- // JXRoomMemberListCell.h
- // shiku_im
- //
- // Created by p on 2018/7/3.
- // Copyright © 2018年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface JXRoomMemberListCell : UITableViewCell
- @property (nonatomic, strong) memberData *data;
- @property (nonatomic, assign) int role;
- @property (nonatomic, strong) roomData *room;
- @property (nonatomic, strong) NSString *curManager;
- @property (nonatomic, strong) UIView *lineView;
- @property (nonatomic, strong) UILabel *onlinStatus;
- @end
|