571898632f
[ADDED] The master password can now be changed. [IMPROVED] Flow of handling the master password when activating the app. [IMPROVED] iTunesArtwork & icons. [ADDED] Elements are now scoped to the current master password. [ADDED] Lots of documentation for the user: - Settings - FAQ - A quickstart guide
25 lines
509 B
Objective-C
25 lines
509 B
Objective-C
//
|
|
// OPElementEntity.h
|
|
// OnePassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
|
@interface OPElementEntity : NSManagedObject
|
|
|
|
@property (nonatomic, retain) NSString *name;
|
|
@property (nonatomic, retain) NSString *mpHashHex;
|
|
@property (nonatomic) int16_t type;
|
|
@property (nonatomic) int16_t uses;
|
|
@property (nonatomic) NSTimeInterval lastUsed;
|
|
|
|
- (void)use;
|
|
- (id)content;
|
|
|
|
@end
|