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