Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created August 28, 2011 01:18
Show Gist options
  • Save cruffenach/1176101 to your computer and use it in GitHub Desktop.
Save cruffenach/1176101 to your computer and use it in GitHub Desktop.
RemoteUser: A MaaSModel Representation of User Managed Object
#import <Foundation/Foundation.h>
#import <MaaSiveCoreData/MaaSiveCoreData.h>
@interface RemoteUser : MaaSModel
@property (nonatomic, retain) NSString * email;
@property (nonatomic, retain) NSString * displayName;
@end
#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