mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-04 22:58:14 +08:00
22 lines
335 B
Objective-C
22 lines
335 B
Objective-C
//
|
|
// RKTStatus.m
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKTStatus.h"
|
|
|
|
@implementation RKTStatus
|
|
|
|
@dynamic statusID;
|
|
@dynamic createdAt;
|
|
@dynamic text;
|
|
@dynamic urlString;
|
|
@dynamic inReplyToScreenName;
|
|
@dynamic isFavorited;
|
|
@dynamic user;
|
|
|
|
@end
|