// // TFBookMarkModel.h // TFReader // // Created by 谢腾飞 on 2020/12/11. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface TFBookMarkModel : NSObject /// 书籍ID @property (nonatomic ,copy) NSString *bookID; /// 书签页内容 @property (nonatomic ,copy) NSString *pageContent; /// 章节标题 @property (nonatomic ,copy) NSString *chapterTitle; /// 章节id @property (nonatomic ,copy) NSString *chapterID; /// 章节排序 @property (nonatomic ,assign) NSInteger chapterSort; /// 章节内容索引 @property (nonatomic ,assign) NSInteger specificIndex; /// 书签加入时间戳 @property (nonatomic ,copy) NSString *timestamp; @end NS_ASSUME_NONNULL_END