2012-01-05 00:44:15 +00:00
|
|
|
//
|
2012-02-05 21:18:38 +00:00
|
|
|
// MPElementEntity.h
|
2012-06-04 09:27:02 +00:00
|
|
|
// MasterPassword-iOS
|
2012-01-05 00:44:15 +00:00
|
|
|
//
|
2013-01-31 05:42:32 +00:00
|
|
|
// Created by Maarten Billemont on 2013-01-29.
|
|
|
|
// Copyright (c) 2013 Lyndir. All rights reserved.
|
2012-01-05 00:44:15 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
2012-06-04 09:27:02 +00:00
|
|
|
@class MPUserEntity;
|
2012-01-05 00:44:15 +00:00
|
|
|
|
2012-02-05 21:18:38 +00:00
|
|
|
@interface MPElementEntity : NSManagedObject
|
2012-01-05 00:44:15 +00:00
|
|
|
|
2012-06-04 09:27:02 +00:00
|
|
|
@property (nonatomic, retain) id content;
|
2012-06-11 14:15:49 +00:00
|
|
|
@property (nonatomic, retain) NSDate * lastUsed;
|
2012-08-19 07:34:49 +00:00
|
|
|
@property (nonatomic, retain) NSString * loginName;
|
2012-06-11 14:15:49 +00:00
|
|
|
@property (nonatomic, retain) NSString * name;
|
2012-07-16 18:29:48 +00:00
|
|
|
@property (nonatomic, retain) NSNumber * requiresExplicitMigration_;
|
2012-06-11 14:15:49 +00:00
|
|
|
@property (nonatomic, retain) NSNumber * type_;
|
|
|
|
@property (nonatomic, retain) NSNumber * uses_;
|
2012-07-10 05:26:49 +00:00
|
|
|
@property (nonatomic, retain) NSNumber * version_;
|
2012-06-04 09:27:02 +00:00
|
|
|
@property (nonatomic, retain) MPUserEntity *user;
|
2012-01-05 00:44:15 +00:00
|
|
|
|
|
|
|
@end
|