1234567891011121314151617181920212223242526 |
- //
- // MSGHeader.m
- // FirstLink
- //
- // Created by unicode on 14-9-17.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import "MSGHeader.h"
- @implementation MSGHeader
- + (NSDictionary*)mts_mapping
- {
- return @{@"code": mts_key(code),
- @"message": mts_key(msg),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys
- {
- return NO;
- }
- @end
|