mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-12 00:35:21 +08:00
18 lines
317 B
Objective-C
18 lines
317 B
Objective-C
//
|
|
// RKObjectMapperSpecModel.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/18/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectMapperSpecModel.h"
|
|
|
|
@implementation RKObjectMapperSpecModel
|
|
|
|
@synthesize name = _name;
|
|
@synthesize age = _age;
|
|
@synthesize createdAt = _createdAt;
|
|
|
|
@end
|