This repository has been archived by the owner on Mar 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Course.h
41 lines (36 loc) · 1.56 KB
/
Course.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
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// Course.h
// WMActualCourseUpdate
//
// Created by Derek Schumacher on 11/17/13.
// Copyright (c) 2013 Schumacher Enterprises. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Course : NSManagedObject
@property (nonatomic, retain) NSString * aMinusValue;
@property (nonatomic, retain) NSString * aPlusValue;
@property (nonatomic, retain) NSString * atendanceWeight;
@property (nonatomic, retain) NSString * aValue;
@property (nonatomic, retain) NSString * bMinusValue;
@property (nonatomic, retain) NSString * bPlusValue;
@property (nonatomic, retain) NSString * bValue;
@property (nonatomic, retain) NSString * cMinusValue;
@property (nonatomic, retain) NSString * courseTitle;
@property (nonatomic, retain) NSString * cPlusValue;
@property (nonatomic, retain) NSNumber * currentGrade;
@property (nonatomic, retain) NSString * cValue;
@property (nonatomic, retain) NSString * dMinusValue;
@property (nonatomic, retain) NSString * dPlusValue;
@property (nonatomic, retain) NSString * dValue;
@property (nonatomic, retain) NSString * essayWeight;
@property (nonatomic, retain) NSString * finalWeight;
@property (nonatomic, retain) NSString * homeworkWeight;
@property (nonatomic, retain) NSString * numCredits;
@property (nonatomic, retain) NSString * otherWeight;
@property (nonatomic, retain) NSString * profName;
@property (nonatomic, retain) NSString * quizWeight;
@property (nonatomic, retain) NSString * semesterTitle;
@property (nonatomic, retain) NSString * testWeight;
@property (nonatomic, retain) NSNumber * hasF;
@end