12345678910111213141516171819202122232425 |
- //
- // PBUserHomePageAppointCell.h
- // PBSDK
- //
- // Created by LStar on 2025/1/26.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBUserHomePageAppointCell : UICollectionViewCell
- ///头像
- @property (nonatomic,strong)UIImageView *picImageView;
- ///姓名
- @property (nonatomic,strong)UILabel *titleLabel;
- ///状态文本
- @property (nonatomic,strong)UILabel *statusLabel;
- @end
- NS_ASSUME_NONNULL_END
|