Files
yuyin_ios/SweetParty/主类/Mine/爵位/DLJueweiItemCell.h
2025-08-08 11:05:33 +08:00

24 lines
468 B
Objective-C
Executable File

//
// DLJueweiItemCell.h
// SweetParty
//
// Created by bj_szd on 2023/6/28.
//
#import <UIKit/UIKit.h>
#import "DLJueweiItemModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface DLJueweiItemCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
@property (weak, nonatomic) IBOutlet UILabel *decLab;
@property (nonatomic, strong) DLJueweiItemModel *model;
@end
NS_ASSUME_NONNULL_END