Files
yuyin_ios/SweetParty/主类/狸猫新增/签到/LMSignInAlertCollectionViewCell.h

27 lines
746 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// LMSignInAlertCollectionViewCell.h
// SweetParty
//
// Created by Xmac on 2024/8/30.
//
#import <UIKit/UIKit.h>
#import "LMSingListModel.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *LMSignInAlertCollectionViewCellID = @"LMSignInAlertCollectionViewCellID";
@interface LMSignInAlertCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UILabel *coinLabel;
@property (weak, nonatomic) IBOutlet UILabel *dayLabel;
@property (weak, nonatomic) IBOutlet UIView *signsCover;
@property (weak, nonatomic) IBOutlet UIView *baseCover;
@property (weak, nonatomic) IBOutlet UIImageView *bgImg;
@property (nonatomic, strong) LMSingListModel *model;
@property (nonatomic, assign) NSInteger index;
@end
NS_ASSUME_NONNULL_END