Files
yuyin_ios/SweetParty/主类/RCMic/Room/麦上麦下人员/SPRoomPeopleCell.h
2025-08-08 11:05:33 +08:00

26 lines
587 B
Objective-C
Executable File

//
// SPRoomPeopleCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/15.
//
#import <UIKit/UIKit.h>
#import "SPRoomPeopleModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPRoomPeopleCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
@property (weak, nonatomic) IBOutlet UIImageView *gxImgV;
@property (weak, nonatomic) IBOutlet UIImageView *mlImgV;
@property (nonatomic, strong) SPRoomPeopleModel *model;
@end
NS_ASSUME_NONNULL_END