19 lines
411 B
C
19 lines
411 B
C
|
|
//
|
||
|
|
// QXMineHomeToolsCell.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/11/4.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXServiceModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXMineHomeToolsCell : UICollectionViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
||
|
|
@property (nonatomic,strong)QXServiceModel *model;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|