2012-01-05 00:44:15 +00:00
|
|
|
//
|
|
|
|
// 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;
|
2012-01-29 11:41:48 +00:00
|
|
|
@property (nonatomic, retain) NSString *mpHashHex;
|
2012-01-05 00:44:15 +00:00
|
|
|
@property (nonatomic) int16_t type;
|
|
|
|
@property (nonatomic) int16_t uses;
|
|
|
|
@property (nonatomic) NSTimeInterval lastUsed;
|
|
|
|
|
|
|
|
- (void)use;
|
|
|
|
- (id)content;
|
|
|
|
|
|
|
|
@end
|