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