CBLModel
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