// // YOUPAILZChatRoomCurrentMemberView.h // VQU // // Created by CY on 2021/11/8. // Copyright © 2021 MS. All rights reserved. // #import #import "YOUPAILZChatRoomMemberModel.h" #import "YOUPAILZLevelView.h" #import "YOUPAILZAvatarView.h" NS_ASSUME_NONNULL_BEGIN @interface YOUPAILZChatRoomCurrentMemberView : UIView @property (nonatomic, weak) UILabel *youpaiprankL; @property (nonatomic, weak) YOUPAILZAvatarView *youpaipavatarView; @property (nonatomic, weak) UILabel *youpaipnicknameL; @property (nonatomic, weak) UIImageView *youpaipvipImgV; @property (nonatomic, weak) UIImageView *youpaipboardImgV; // 榜单 @property (nonatomic, weak) YOUPAILZLevelView *youpaiplevelView; @property (nonatomic, weak) UILabel *youpaipcontributionL; @property (nonatomic, weak) UILabel *youpaiplastDifferenceL; - (void)youpaifreloadWithModel:(YOUPAILZChatRoomMemberModel *)member contributionName:(NSString *)contributionName; @end NS_ASSUME_NONNULL_END