| 1234567891011121314151617 |
- //
- // QuoteDetailController.h
- // AIIM
- //
- // Created by qitewei on 2025/5/29.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface QuoteDetailController : UIViewController
- @property (nonatomic, strong) NSString *quotedSenderName;
- @property (nonatomic, strong) NSString *quotedContent;
- @end
- NS_ASSUME_NONNULL_END
|