2
0
MasterPassword/MasterPassword/MPElementEntity.h

24 lines
590 B
C
Raw Normal View History

//
2012-02-05 21:18:38 +00:00
// MPElementEntity.h
// MasterPassword-iOS
//
// Created by Maarten Billemont on 04/06/12.
// Copyright (c) 2012 Lyndir. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class MPUserEntity;
2012-02-05 21:18:38 +00:00
@interface MPElementEntity : NSManagedObject
@property (nonatomic, retain) id content;
2012-06-08 21:46:13 +00:00
@property (nonatomic, retain) NSDate *lastUsed;
@property (nonatomic, retain) NSString *name;
@property (nonatomic, retain) NSNumber *type_;
@property (nonatomic, retain) NSNumber *uses_;
@property (nonatomic, retain) MPUserEntity *user;
@end