mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
24 lines
514 B
Objective-C
24 lines
514 B
Objective-C
//
|
|
// TestSerializationAssociation.m
|
|
// OTRestFramework
|
|
//
|
|
// Created by Jeremy Ellison on 8/17/09.
|
|
// Copyright 2009 Objective3. All rights reserved.
|
|
//
|
|
|
|
#import "TestSerializationAssociation.h"
|
|
|
|
|
|
@implementation TestSerializationAssociation
|
|
|
|
@synthesize testString = _testString;
|
|
|
|
+ (NSDictionary*)elementToPropertyMappings {
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:@"testString", @"test_string", nil];
|
|
}
|
|
|
|
+ (NSDictionary*)elementToRelationshipMappings {
|
|
return [NSDictionary dictionary];
|
|
}
|
|
|
|
@end |