[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.
24 lines
370 B
Objective-C
24 lines
370 B
Objective-C
//
|
|
// MPUserEntity.m
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 11/06/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPUserEntity.h"
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@implementation MPUserEntity
|
|
|
|
@dynamic avatar_;
|
|
@dynamic keyID;
|
|
@dynamic lastUsed;
|
|
@dynamic name;
|
|
@dynamic saveKey_;
|
|
@dynamic defaultType_;
|
|
@dynamic elements;
|
|
|
|
@end
|