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.
42 lines
670 B
42 lines
670 B
// |
|
// WXYZ_ChapterPayBarModel.m |
|
// WXReader |
|
// |
|
// Created by Andrew on 2018/7/15. |
|
// Copyright © 2018年 Andrew. All rights reserved. |
|
// |
|
|
|
#import "WXYZ_ChapterPayBarModel.h" |
|
|
|
@implementation WXYZ_ChapterPayBarModel |
|
|
|
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{ |
|
return @{@"pay_options" : [WXYZ_ChapterPayBarOptionModel class]}; |
|
} |
|
|
|
+ (NSDictionary *)modelCustomPropertyMapper { |
|
return @{ |
|
@"pay_options" :@"buy_option" |
|
}; |
|
} |
|
|
|
@end |
|
|
|
@implementation WXYZ_ChapterPayBarInfoModel |
|
|
|
@end |
|
|
|
|
|
@implementation WXYZ_ChapterPayBarOptionModel |
|
|
|
@end |
|
|
|
|
|
@implementation Actual_Cost |
|
|
|
@end |
|
|
|
|
|
@implementation Original_Cost |
|
|
|
@end
|
|
|