2012-01-05 00:44:15 +00:00
|
|
|
//
|
2012-02-05 21:18:38 +00:00
|
|
|
// MPElementStoredEntity.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-02-05 21:18:38 +00:00
|
|
|
#import "MPElementEntity.h"
|
2012-01-05 00:44:15 +00:00
|
|
|
|
|
|
|
|
2012-02-05 21:18:38 +00:00
|
|
|
@interface MPElementStoredEntity : MPElementEntity
|
2012-01-05 00:44:15 +00:00
|
|
|
|
2012-06-04 09:27:02 +00:00
|
|
|
@property (nonatomic, retain) id contentObject;
|
2012-01-05 00:44:15 +00:00
|
|
|
|
|
|
|
@end
|