-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreferences.h
28 lines (23 loc) · 906 Bytes
/
Preferences.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Preferences.h
// Tracker
//
// Created by Justin Farlow on 11/8/13.
// Copyright (c) 2013 Gartner Lab. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Preferences : NSManagedObject
@property (nonatomic, retain) NSString * alertMessage;
@property (nonatomic, retain) NSNumber * blackLevel;
@property (nonatomic, retain) NSNumber * isAutoAdjImage;
@property (nonatomic, retain) NSNumber * isShowingImage;
@property (nonatomic, retain) NSNumber * isShowingPoint;
@property (nonatomic, retain) NSNumber * isShowingTrack;
@property (nonatomic, retain) NSNumber * isTrackEditable;
@property (nonatomic, retain) NSNumber * spotSize;
@property (nonatomic, retain) id trackColor;
@property (nonatomic, retain) NSNumber * usesNaturalUnits;
@property (nonatomic, retain) NSNumber * whiteLevel;
@property (nonatomic, retain) NSNumber * zoomLevel;
@end