![]() |
Ignite Tools
|
00001 // 00002 // Presenter.h 00003 // IgniteTools 00004 // 00005 // Created by Joseph Flasher on 6/2/11. 00006 // Copyright 2011 Ars Sollertia. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 #import <CoreData/CoreData.h> 00011 00015 @interface Presenter : NSManagedObject { 00016 } 00017 00021 @property (nonatomic, retain) NSString *name; 00022 00026 @property (nonatomic, retain) NSData *portrait; 00027 00031 @property (nonatomic, retain) NSString *twitterID; 00032 00036 @property (nonatomic, retain) NSString *websiteURL; 00037 00041 @property (nonatomic, retain) NSSet *events; 00042 00046 @property (nonatomic, retain) NSSet *sparks; 00047 00051 @property (nonatomic, retain) NSString *uppercaseFirstLetter; 00052 00053 @end