20 lines
306 B
Objective-C
20 lines
306 B
Objective-C
//
|
|
// AIChaAnswerView.h
|
|
// ProductApp
|
|
//
|
|
// Created by 工作 on 2024/10/14.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AIChaAnswerView : UIView
|
|
///
|
|
@property (nonatomic , strong) NSString *strvalue;
|
|
///
|
|
@property (nonatomic , strong) NSArray *arrdata;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|