123456789101112131415161718192021222324252627282930 |
- //
- // FKWeixinItem.m
- // FirstLink
- //
- // Created by ascii on 15/10/28.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import "FKWeixinItem.h"
- @implementation FKWeixinItem
- + (NSDictionary*)mts_mapping {
- return @{@"channels": mts_key(channel),
- @"title": mts_key(title),
- @"desc": mts_key(desc),
- @"link": mts_key(link),
- @"imgUrl": mts_key(photoURL),
- @"type": mts_key(type),
- @"dataUrl": mts_key(dataURL),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys
- {
- return NO;
- }
- @end
|