9c875d4311
[ADDED] User preference for default password type. [RENAMED] Secure type to Maximum Security. [FIXED] Logging bug in password generation. [ADDED] Confirmation popup after new user creation.
19 lines
359 B
Objective-C
19 lines
359 B
Objective-C
//
|
|
// MPElementStoredEntity.h
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 11/06/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@interface MPElementStoredEntity : MPElementEntity
|
|
|
|
@property (nonatomic, retain) id contentObject;
|
|
|
|
@end
|