-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask.h
37 lines (29 loc) · 772 Bytes
/
Task.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
//
// Task.h
// TODO
//
// Created by 下村 翔 on 5/19/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <CoreData/CoreData.h>
@class Note;
@class TaskList;
@interface Task : NSManagedObject
{
}
@property (retain) NSNumber * priority;
@property (retain) NSDate * due;
@property (retain) NSString * title;
@property (retain) NSString * completed;
@property (retain) NSString * time;
@property (retain) NSString * tags;
@property (retain) NSNumber * taskid;
@property (retain) NSSet* notes;
@property (retain) TaskList * tasklist;
@end
@interface Task (CoreDataGeneratedAccessors)
- (void)addNotesObject:(Note *)value;
- (void)removeNotesObject:(Note *)value;
- (void)addNotes:(NSSet *)value;
- (void)removeNotes:(NSSet *)value;
@end