[IMPROVED] Cleaner handling of types in entities. [FIXED] Lots of little fixes from refactoring and AppCode inspections, throughout.
21 lines
381 B
Objective-C
21 lines
381 B
Objective-C
//
|
|
// MPConfig.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "Pearl.h"
|
|
|
|
@interface MPConfig : PearlConfig
|
|
|
|
@property (nonatomic, retain) NSNumber *rememberLogin;
|
|
|
|
@property (nonatomic, retain) NSNumber *iCloud;
|
|
@property (nonatomic, retain) NSNumber *iCloudDecided;
|
|
|
|
+ (MPConfig *)get;
|
|
|
|
@end
|