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.
27 lines
515 B
27 lines
515 B
// |
|
// WXYZ_BookBackSideModel.h |
|
// WXReader |
|
// |
|
// Created by Andrew on 2020/5/27. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@class TFBookStoreLabelModel; |
|
|
|
@interface WXYZ_BookBackSideModel : NSObject |
|
|
|
@property (nonatomic, copy) NSString *title; |
|
|
|
@property (nonatomic, copy) NSString *desc; |
|
|
|
@property (nonatomic, assign) NSInteger comment_num; |
|
|
|
@property (nonatomic, strong) TFBookStoreLabelModel *guess_like; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|