QuoteDetailController.h 325 B

1234567891011121314151617
  1. //
  2. // QuoteDetailController.h
  3. // ABtong
  4. //
  5. // Created by gan on 2025/7/28.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface QuoteDetailController : UIViewController
  10. @property (nonatomic, strong) NSString *quotedSenderName;
  11. @property (nonatomic, strong) NSString *quotedContent;
  12. @end
  13. NS_ASSUME_NONNULL_END