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.
Bungloo/Mac/TweetModel.m
2012-11-05 17:47:26 +01:00

23 lines
361 B
Objective-C

//
// TweetModel.m
// Tentia
//
// Created by Jeena on 10.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "TweetModel.h"
@implementation TweetModel
@synthesize text, inReplyTostatusId, inReplyToEntity;
- (void)dealloc {
[text release];
[inReplyTostatusId release];
[inReplyToEntity release];
[super dealloc];
}
@end