forked from MRRSoftware/Tardis
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.h
More file actions
33 lines (24 loc) · 673 Bytes
/
Project.h
File metadata and controls
33 lines (24 loc) · 673 Bytes
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
//
// Project.h
// Tardis
//
// Created by Mickey on 4/29/10.
// Copyright 2010 MRR Software. All rights reserved.
//
#import <CoreData/CoreData.h>
@class Task;
@interface Project : NSManagedObject
{
}
@property (nonatomic, retain) NSDate * creationDate;
@property (nonatomic, retain) NSString * projectID;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSDate * modifiedDate;
@property (nonatomic, retain) NSSet* tasks;
@end
@interface Project (CoreDataGeneratedAccessors)
- (void)addTasksObject:(Task *)value;
- (void)removeTasksObject:(Task *)value;
- (void)addTasks:(NSSet *)value;
- (void)removeTasks:(NSSet *)value;
@end