mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 22:42:51 +08:00
20 lines
538 B
Objective-C
20 lines
538 B
Objective-C
//
|
|
// RKObjectMappingProviderContextEntry.h
|
|
// RestKit
|
|
//
|
|
// Created by Jeff Arena on 1/26/12.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKMapping.h"
|
|
|
|
@interface RKObjectMappingProviderContextEntry : NSObject
|
|
|
|
+ (RKObjectMappingProviderContextEntry *)contextEntryWithMapping:(RKMapping *)mapping;
|
|
+ (RKObjectMappingProviderContextEntry *)contextEntryWithMapping:(RKMapping *)mapping userData:(id)userData;
|
|
|
|
@property (nonatomic, retain) RKMapping *mapping;
|
|
@property (nonatomic, retain) id userData;
|
|
|
|
@end
|