2017-05-07 18:36:01 -04:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2012-01-05 01:44:15 +01:00
|
|
|
//
|
2017-05-07 18:36:01 -04:00
|
|
|
// Master Password is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2012-01-05 01:44:15 +01:00
|
|
|
//
|
2017-05-07 18:36:01 -04:00
|
|
|
// Master Password is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2012-01-05 01:44:15 +01:00
|
|
|
//
|
2017-05-07 18:36:01 -04:00
|
|
|
// You can find a copy of the GNU General Public License in the
|
|
|
|
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
|
|
|
|
//==============================================================================
|
2012-01-05 01:44:15 +01:00
|
|
|
|
2012-06-05 00:55:02 +02:00
|
|
|
#import "Pearl.h"
|
|
|
|
|
2012-02-27 23:38:28 +01:00
|
|
|
@interface MPConfig : PearlConfig
|
2012-01-05 01:44:15 +01:00
|
|
|
|
2013-04-20 14:11:19 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *sendInfo;
|
2020-04-18 21:47:09 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *sendInfoDecided;
|
2020-04-21 11:33:31 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *notificationsDecided;
|
2013-04-20 14:11:19 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *rememberLogin;
|
2014-06-26 23:13:21 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *hidePasswords;
|
2012-01-05 01:44:15 +01:00
|
|
|
|
2014-04-26 14:03:44 -04:00
|
|
|
@property(nonatomic, retain) NSNumber *checkInconsistency;
|
2012-05-11 22:45:05 +02:00
|
|
|
|
2014-07-28 18:53:50 -04:00
|
|
|
@property(nonatomic, strong) NSNumber *siteAttacker;
|
2014-07-26 01:26:33 -04:00
|
|
|
|
2012-01-05 01:44:15 +01:00
|
|
|
@end
|