Created
March 22, 2015 16:35
-
-
Save reddavis/90e9aac94b89de58f493 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 "REDModel.h" | |
@interface TestModel : NSObject <REDModel> | |
@property (copy, nonatomic) NSString *string; | |
@property (copy, nonatomic) NSDate *date; | |
@property (copy, nonatomic) NSNumber *number; | |
@end |
This file contains hidden or 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 "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