22 lines
443 B
Objective-C
22 lines
443 B
Objective-C
//
|
|
// TUICustomerServicePluginProductInfo.h
|
|
// TUICustomerServicePlugin
|
|
//
|
|
// Created by xia on 2023/7/5.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TUICustomerServicePluginProductInfo : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, copy) NSString *desc;
|
|
@property (nonatomic, copy) NSString *picURL;
|
|
@property (nonatomic, copy) NSString *linkURL;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|