Skip to content

Instantly share code, notes, and snippets.

@reddavis
Created March 22, 2015 16:35
Show Gist options
  • Save reddavis/90e9aac94b89de58f493 to your computer and use it in GitHub Desktop.
Save reddavis/90e9aac94b89de58f493 to your computer and use it in GitHub Desktop.
#import "REDModel.h"
@interface TestModel : NSObject <REDModel>
@property (copy, nonatomic) NSString *string;
@property (copy, nonatomic) NSDate *date;
@property (copy, nonatomic) NSNumber *number;
@end
#import "TestModel.h"
@implementation TestModel
@dynamic string, date, number;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment