22 lines
316 B
Objective-C
22 lines
316 B
Objective-C
//
|
|
// TweetModel.m
|
|
// Twittia 2
|
|
//
|
|
// Created by Jeena on 10.01.11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "TweetModel.h"
|
|
|
|
|
|
@implementation TweetModel
|
|
|
|
@synthesize text, inReplyTostatusId;
|
|
|
|
- (void)dealloc {
|
|
[text release];
|
|
[inReplyTostatusId release];
|
|
[super dealloc];
|
|
}
|
|
|
|
@end
|