fixed problem with in replay ids

This commit is contained in:
Jeena Paradies 2011-01-10 17:01:06 +01:00
parent 57d8c5f9ff
commit 7b4adc0f63
31 changed files with 578 additions and 491 deletions

20
TweetModel.h Normal file
View file

@ -0,0 +1,20 @@
//
// TweetModel.h
// Twittia 2
//
// Created by Jeena on 10.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface TweetModel : NSObject {
NSString *text;
NSString *inReplyTostatusId;
}
@property (nonatomic, retain) NSString *text;
@property (nonatomic, retain) NSString *inReplyTostatusId;
@end