mved files to prepare for Linux version

This commit is contained in:
Jeena Paradies 2012-11-05 17:47:26 +01:00
parent 5687a30077
commit 248d8fa1b6
175 changed files with 12602 additions and 0 deletions

22
Mac/TweetModel.h Normal file
View file

@ -0,0 +1,22 @@
//
// TweetModel.h
// Tentia
//
// Created by Jeena on 10.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface TweetModel : NSObject {
NSString *text;
NSString *inReplyTostatusId;
NSString *inReplyToEntity;
}
@property (nonatomic, retain) NSString *text;
@property (nonatomic, retain) NSString *inReplyTostatusId;
@property (nonatomic, retain) NSString *inReplyToEntity;
@end