22 lines
379 B
Objective-C
22 lines
379 B
Objective-C
//
|
|
// EventCenterOfficialCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/4/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class HomeBannerInfoModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface EventCenterOfficialCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) HomeBannerInfoModel *cellModel;
|
|
|
|
// 更新倒计时天数
|
|
//- (void)updateCountdownWithDays:(NSInteger)days;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|