Created
June 25, 2012 12:41
-
-
Save a3020/2988353 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface status : NSObject { | |
NSNumber* _id; | |
NSString* _unomas; | |
NSNumber* _minutes; | |
NSNumber* _hours; | |
NSNumber* _days; | |
NSString* _naam; | |
NSString* _date; | |
NSString* _bericht; | |
NSString* _tijd_frmt; | |
} | |
/** | |
* The unique ID of this Status | |
*/ | |
@property (nonatomic, retain) NSNumber* id; | |
@property (nonatomic, retain) NSString* unomas; | |
@property (nonatomic, retain) NSNumber* minutes; | |
@property (nonatomic, retain) NSNumber* hours; | |
@property (nonatomic, retain) NSNumber* days; | |
@property (nonatomic, retain) NSString* naam; | |
@property (nonatomic, retain) NSString* date; | |
@property (nonatomic, retain) NSString* bericht; | |
@property (nonatomic, retain) NSString* tijd_frmt; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment