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