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.
39 lines
843 B
39 lines
843 B
// |
|
// WXYZ_PlayPageModel.h |
|
// WXReader |
|
// |
|
// Created by Andrew on 2020/3/10. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@class TFCommentsListModel, TFAdvertModel, WXYZ_RelationModel; |
|
|
|
@interface WXYZ_PlayPageModel : NSObject |
|
|
|
@property (nonatomic, assign) NSInteger comment_total_count; |
|
|
|
@property (nonatomic, strong) TFCommentsModel *comment; |
|
|
|
@property (nonatomic, strong) NSArray <TFProductionModel *> *list; |
|
|
|
@property (nonatomic, strong) WXYZ_RelationModel *relation; |
|
|
|
@property (nonatomic, strong) TFAdvertModel *advert; |
|
|
|
@end |
|
|
|
@interface WXYZ_RelationModel : NSObject |
|
|
|
@property (nonatomic, assign) NSInteger production_id; |
|
|
|
@property (nonatomic, assign) NSInteger chapter_id; |
|
|
|
@property (nonatomic, copy) NSString *chapter_title; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|