ASMessageListCell.h 292 B

12345678910111213141516171819
  1. //
  2. // ASMessageListCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/7/4.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASMessageModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASMessageListCell : UITableViewCell
  11. @property (nonatomic, strong) ASMessageModel *messageModel;
  12. @end
  13. NS_ASSUME_NONNULL_END