123456789101112131415161718192021222324 |
- //
- // NYClassRoomPeiPhotoCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/2/17.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CultivatePhotoModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYClassRoomPeiPhotoCell : UICollectionViewCell
- @property (nonatomic ,strong) UIImageView *imagev;
- @property (nonatomic ,strong) UILabel *time_label;
- @property (nonatomic ,strong) UILabel *title_label;
- @property (nonatomic ,strong) UILabel *valid_label;
- @property (nonatomic ,strong) UILabel *valid_time_label;
- @property (nonatomic ,strong) CultivatePhotoModel *cultivatePhotoModel;
- @end
- NS_ASSUME_NONNULL_END
|