CBLModel
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
ShoppingItem.h | |
@interface ShoppingItem : CBLModel | |
@property BOOL check; | |
@property (nonatomic, copy) NSString *type; | |
@property (nonatomic, copy) NSString *text; | |
@property (nonatomic, copy) NSDictionary *dictionary; | |
@property (nonatomic, copy) NSArray *array; | |
@property (nonatomic, strong) NSDate *created_at; | |
@end | |
ShoppingItem.m | |
@implementation ShoppingItem | |
@dynamic type, check, text, created_at, dictionary, array; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment