13 lines
264 B
Mathematica
13 lines
264 B
Mathematica
|
#import <WMF/WMFContent+CoreDataProperties.h>
|
||
|
|
||
|
@implementation WMFContent (CoreDataProperties)
|
||
|
|
||
|
+ (NSFetchRequest<WMFContent *> *)fetchRequest {
|
||
|
return [[NSFetchRequest alloc] initWithEntityName:@"WMFContent"];
|
||
|
}
|
||
|
|
||
|
@dynamic object;
|
||
|
@dynamic contentGroup;
|
||
|
|
||
|
@end
|