fixed problem with in replay ids
This commit is contained in:
parent
57d8c5f9ff
commit
7b4adc0f63
31 changed files with 578 additions and 491 deletions
20
TweetModel.h
Normal file
20
TweetModel.h
Normal 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
|
Reference in a new issue