forked from erichoracek/MSCollectionViewCalendarLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMSEvent.h
More file actions
22 lines (17 loc) · 611 Bytes
/
Copy pathMSEvent.h
File metadata and controls
22 lines (17 loc) · 611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// MSEvent.h
// Example
//
// Created by Eric Horacek on 2/26/13.
// Copyright (c) 2015 Eric Horacek. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MSEvent : NSManagedObject
@property (nonatomic, strong) NSNumber *remoteID;
@property (nonatomic, strong) NSDate *start;
@property (nonatomic, strong) NSString *title;
@property (nonatomic, strong) NSString *location;
@property (nonatomic, strong) NSNumber *timeToBeDecided;
@property (nonatomic, strong) NSNumber *dateToBeDecided;
- (NSDate *)day; // Derived attribute to make it easy to sort events into days by equality
@end