// // OPElementEntity.h // OnePassword // // Created by Maarten Billemont on 02/01/12. // Copyright (c) 2012 Lyndir. All rights reserved. // #import #import @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