Created
August 28, 2011 01:18
-
-
Save cruffenach/1176101 to your computer and use it in GitHub Desktop.
RemoteUser: A MaaSModel Representation of User Managed Object
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 <Foundation/Foundation.h> | |
#import <MaaSiveCoreData/MaaSiveCoreData.h> | |
@interface RemoteUser : MaaSModel | |
@property (nonatomic, retain) NSString * email; | |
@property (nonatomic, retain) NSString * displayName; | |
@end |
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 "RemoteUser.h" | |
@implementation RemoteUser | |
@synthesize email = email_; | |
@synthesize displayName = displayName_; | |
-(void)dealloc { | |
[email_ release]; | |
[displayName_ release]; | |
[super dealloc]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment