// // YYVipItemCell.h // SweetParty // // Created by bj_szd on 2022/6/11. // #import 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