-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.h
More file actions
35 lines (25 loc) · 751 Bytes
/
Client.h
File metadata and controls
35 lines (25 loc) · 751 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
//
// Client.h
// TimeClock
//
// Created by Matthew Baker on 10/8/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <CoreData/CoreData.h>
@class TimeEntry;
@interface Client : NSManagedObject
{
}
@property (nonatomic, retain) NSNumber * rate;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSString * website;
@property (nonatomic, retain) NSString * pocName;
@property (nonatomic, retain) NSString * pocPhone;
@property (nonatomic, retain) NSSet *entries;
@end
@interface Client (CoreDataGeneratedAccessors)
- (void)addEntriesObject:(TimeEntry *)value;
- (void)removeEntriesObject:(TimeEntry *)value;
- (void)addEntries:(NSSet *)value;
- (void)removeEntries:(NSSet *)value;
@end