15 lines
289 B
Mathematica
15 lines
289 B
Mathematica
|
#import <WMF/WMFKeyValue+CoreDataProperties.h>
|
||
|
|
||
|
@implementation WMFKeyValue (CoreDataProperties)
|
||
|
|
||
|
+ (NSFetchRequest<WMFKeyValue *> *)fetchRequest {
|
||
|
return [[NSFetchRequest alloc] initWithEntityName:@"WMFKeyValue"];
|
||
|
}
|
||
|
|
||
|
@dynamic key;
|
||
|
@dynamic group;
|
||
|
@dynamic date;
|
||
|
@dynamic value;
|
||
|
|
||
|
@end
|