You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
717 B
36 lines
717 B
// |
|
// 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
|
|
|