Files
yuyin_ios/SweetParty/主类/Mine/VIP/YYVipItemCell.h
2025-08-08 11:05:33 +08:00

30 lines
589 B
Objective-C
Executable File

//
// YYVipItemCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/11.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface YYVipItemCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
@property (weak, nonatomic) IBOutlet UILabel *dayLab;
@end
@interface YYVipItemModel : NSObject
@property(nonatomic, copy)NSString *vid;
@property(nonatomic, copy)NSString *name;
@property(nonatomic, copy)NSString *day;
@property(nonatomic, copy)NSString *price;
@end
NS_ASSUME_NONNULL_END