20 lines
459 B
Mathematica
20 lines
459 B
Mathematica
|
//
|
||
|
// MPGeneratedSiteEntity+CoreDataProperties.m
|
||
|
// MasterPassword-iOS
|
||
|
//
|
||
|
// Created by Maarten Billemont on 2017-04-30.
|
||
|
// Copyright © 2017 Lyndir. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "MPGeneratedSiteEntity+CoreDataProperties.h"
|
||
|
|
||
|
@implementation MPGeneratedSiteEntity (CoreDataProperties)
|
||
|
|
||
|
+ (NSFetchRequest<MPGeneratedSiteEntity *> *)fetchRequest {
|
||
|
return [[NSFetchRequest alloc] initWithEntityName:@"MPGeneratedSiteEntity"];
|
||
|
}
|
||
|
|
||
|
@dynamic counter_;
|
||
|
|
||
|
@end
|