19 lines
387 B
Objective-C
19 lines
387 B
Objective-C
//
|
|
// WXYZ_BookBackSideModel.m
|
|
// WXReader
|
|
//
|
|
// Created by Andrew on 2020/5/27.
|
|
// Copyright © 2020 Andrew. All rights reserved.
|
|
//
|
|
|
|
#import "WXYZ_BookBackSideModel.h"
|
|
#import "TFBookStoreLabelModel.h"
|
|
|
|
@implementation WXYZ_BookBackSideModel
|
|
|
|
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{@"guess_like" : [TFBookStoreLabelModel class]};
|
|
}
|
|
|
|
@end
|