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/PostModel.m
Jeena Paradies 9f6c9f9131 fixed #151
2013-02-17 11:41:30 +01:00

26 lines
439 B
Objective-C

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