mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-12 00:35:21 +08:00
21 lines
365 B
Objective-C
21 lines
365 B
Objective-C
//
|
|
// RKDynamicMappingModels.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 7/28/11.
|
|
// Copyright 2011 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Person : NSObject
|
|
@property (nonatomic, retain) NSString* name;
|
|
@property (nonatomic, retain) NSArray* friends;
|
|
@end
|
|
|
|
@interface Boy : Person
|
|
@end
|
|
|
|
@interface Girl : Person
|
|
@end
|