2014-09-21 14:49:57 +00:00
|
|
|
//
|
|
|
|
// MPSiteQuestionEntity.h
|
2014-09-27 20:30:17 +00:00
|
|
|
// MasterPassword-iOS
|
2014-09-21 14:49:57 +00:00
|
|
|
//
|
2014-09-27 20:30:17 +00:00
|
|
|
// Created by Maarten Billemont on 2014-09-27.
|
2014-09-21 14:49:57 +00:00
|
|
|
// Copyright (c) 2014 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
|
|
|
@class MPSiteEntity;
|
|
|
|
|
|
|
|
@interface MPSiteQuestionEntity : NSManagedObject
|
|
|
|
|
2017-04-01 04:30:25 +00:00
|
|
|
@property(nonatomic, retain) NSString *keyword;
|
|
|
|
@property(nonatomic, retain) MPSiteEntity *site;
|
2014-09-21 14:49:57 +00:00
|
|
|
|
|
|
|
@end
|