-
Notifications
You must be signed in to change notification settings - Fork 4
/
Event.h
50 lines (42 loc) · 1.33 KB
/
Event.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
42
43
44
45
46
47
48
49
50
//
// Book.h
// XML
//
// Created by iPhone SDK Articles on 11/23/08.
// Copyright 2008 www.iPhoneSDKArticles.com.
//
#import <UIKit/UIKit.h>
@interface Event : NSObject {
NSInteger eventID;
NSString *title; //Same name as the Entity Name.
NSString *room; //Same name as the Entity Name.
NSString *abstract; //Same name as the Entity Name.
NSString *description;
NSString *subtitle;
NSString *start;
NSString *duration;
NSString *date;
NSString *language;
NSString *track;
NSString *speaker;
NSDate *startDate;
NSDate *realDate;
BOOL reminderSet;
}
@property (nonatomic, readwrite) NSInteger eventID;
@property (nonatomic, retain) NSString *title;
@property (nonatomic, retain) NSString *room;
@property (nonatomic, retain) NSString *abstract;
@property (nonatomic, retain) NSString *description;
@property (nonatomic, retain) NSString *subtitle;
@property (nonatomic, retain) NSString *start;
@property (nonatomic, retain) NSString *duration;
@property (nonatomic, retain) NSString *date;
@property (nonatomic, retain) NSString *language;
@property (nonatomic, retain) NSString *track;
@property (nonatomic, retain) NSString *speaker;
@property (nonatomic, retain) NSDate *startDate;
@property (nonatomic, retain) NSDate *realDate;
@property (nonatomic) BOOL reminderSet;
- (BOOL)isAtDate:(NSDate *)_date;
@end