This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Twittia/TweetModel.h
2011-01-10 17:01:06 +01:00

20 lines
366 B
Objective-C

//
// 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