- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNote.h
More file actions
Latest commit
19 lines (14 loc) · 352 Bytes
/
Copy pathNote.h
File metadata and controls
19 lines (14 loc) · 352 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Note.h
// Timer
//
// Created by Chris Monahan on 8/25/14.
// Copyright 2014 Core Coding. All rights reserved.
//
#import<Foundation/Foundation.h>
#import<CoreData/CoreData.h>
@class Timesheet;
@interfaceNote : NSManagedObject
@property (nonatomic, retain) Timesheet *timesheet;
@property (nonatomic, retain) NSString *activity;
@end