// // THGiveVipMessageCell.h // TreeHole // // Created by iOS on 2023/2/9. // Copyright © 2023 CYH. All rights reserved. // #import #import "THGiveVipMessageCellData.h" NS_ASSUME_NONNULL_BEGIN @interface THGiveVipMessageCell : TUIMessageCell @property(nonatomic, strong)UIImageView *vipIconView; @property UILabel *vipTitleLb; // vip名称 @property UILabel *vipSubLb; // vip介绍 - (void)fillWithData:(THGiveVipMessageCellData *)data; // 绘制 UI @end NS_ASSUME_NONNULL_END