20 lines
416 B
Objective-C
20 lines
416 B
Objective-C
//
|
|
// CycleTimerCell.h
|
|
// Ifish
|
|
//
|
|
// Created by 祝发冬 on 2022/5/15.
|
|
// Copyright © 2022 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CycleTimerCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *openTilmeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *closeTimeLabel;
|
|
@property (nonatomic,weak) id model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|