88fdc89f27
[REMOVED] UbiquityStoreManager and iCloud support. Now using simplified local Core Data store logic. [ADDED] Generating site login names. [IMPROVED] Some refactoring and interface improvements for optionally generated user names.
19 lines
370 B
Objective-C
19 lines
370 B
Objective-C
//
|
|
// MPElementGeneratedEntity.h
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 2014-09-14.
|
|
// Copyright (c) 2014 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@interface MPElementGeneratedEntity : MPElementEntity
|
|
|
|
@property (nonatomic, retain) NSNumber * counter_;
|
|
|
|
@end
|