27 lines
750 B
Objective-C
27 lines
750 B
Objective-C
//
|
|
// MPElementEntity.h
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 2013-01-29.
|
|
// Copyright (c) 2013 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@class MPUserEntity;
|
|
|
|
@interface MPElementEntity : NSManagedObject
|
|
|
|
@property (nonatomic, retain) id content;
|
|
@property (nonatomic, retain) NSDate * lastUsed;
|
|
@property (nonatomic, retain) NSString * loginName;
|
|
@property (nonatomic, retain) NSString * name;
|
|
@property (nonatomic, retain) NSNumber * requiresExplicitMigration_;
|
|
@property (nonatomic, retain) NSNumber * type_;
|
|
@property (nonatomic, retain) NSNumber * uses_;
|
|
@property (nonatomic, retain) NSNumber * version_;
|
|
@property (nonatomic, retain) MPUserEntity *user;
|
|
|
|
@end
|