mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-12 09:08:58 +08:00
21 lines
297 B
Objective-C
21 lines
297 B
Objective-C
//
|
|
// RKDynamicMappingModels.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 7/28/11.
|
|
// Copyright 2011 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKDynamicMappingModels.h"
|
|
|
|
@implementation Person
|
|
@synthesize name;
|
|
@synthesize friends;
|
|
@end
|
|
|
|
@implementation Girl
|
|
@end
|
|
|
|
@implementation Boy
|
|
@end
|