Bez popisu

MSGHeader.m 372B

1234567891011121314151617181920212223242526
  1. //
  2. // MSGHeader.m
  3. // FirstLink
  4. //
  5. // Created by unicode on 14-9-17.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import "MSGHeader.h"
  9. @implementation MSGHeader
  10. + (NSDictionary*)mts_mapping
  11. {
  12. return @{@"code": mts_key(code),
  13. @"message": mts_key(msg),
  14. };
  15. }
  16. + (BOOL)mts_shouldSetUndefinedKeys
  17. {
  18. return NO;
  19. }
  20. @end