37 lines
717 B
Objective-C
37 lines
717 B
Objective-C
//
|
|
// TFFeedBackModel.h
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/22.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class TFHelpListModel, TFQuestionListModel;
|
|
|
|
@interface TFFeedBackModel : NSObject
|
|
|
|
@property (nonatomic ,strong) NSArray <TFHelpListModel *>*help_list;
|
|
|
|
@end
|
|
|
|
|
|
@interface TFHelpListModel : NSObject
|
|
|
|
@property (nonatomic ,copy) NSString *name; // 标题
|
|
@property (nonatomic ,strong) NSArray <TFQuestionListModel *>*list; // 问题列表
|
|
|
|
@end
|
|
|
|
|
|
@interface TFQuestionListModel : NSObject
|
|
|
|
@property (nonatomic ,copy) NSString *title;
|
|
@property (nonatomic ,copy) NSString *answer;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|