mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-13 09:30:46 +08:00
19 lines
393 B
Objective-C
19 lines
393 B
Objective-C
//
|
|
// TestSerializationAssociation.h
|
|
// OTRestFramework
|
|
//
|
|
// Created by Jeremy Ellison on 8/17/09.
|
|
// Copyright 2009 Objective3. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "OTRestModelMappableProtocol.h"
|
|
|
|
@interface TestSerializationAssociation : NSObject <OTRestModelMappable>
|
|
{
|
|
NSString* _testString;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSString* testString;
|
|
|
|
@end |