mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-11 16:30:25 +08:00
23 lines
433 B
Objective-C
23 lines
433 B
Objective-C
//
|
|
// RKObjectMapperSpecModel.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/18/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface RKObjectMapperSpecModel : NSObject {
|
|
NSString* _name;
|
|
NSNumber* _age;
|
|
NSDate* _createdAt;
|
|
}
|
|
|
|
@property (nonatomic,retain) NSString* name;
|
|
@property (nonatomic,retain) NSNumber* age;
|
|
@property (nonatomic,retain) NSDate* createdAt;
|
|
|
|
@end
|
|
|