Files
Novel/XiaoShuoHui/TFReader/Classes/Personal(我的)/FeedBack(反馈)/Model/TFFeedBackModel.h
T
2021-02-07 11:24:08 +08:00

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