12345678910111213141516171819 |
- //
- // ASMessageListCell.h
- // Asteria
- //
- // Created by iOS on 2023/7/4.
- //
- #import <UIKit/UIKit.h>
- #import "ASMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASMessageListCell : UITableViewCell
- @property (nonatomic, strong) ASMessageModel *messageModel;
- @end
- NS_ASSUME_NONNULL_END
|