summaryrefslogtreecommitdiffstats
path: root/Classes/Topic.h
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-20 14:39:20 -0400
committermatt handler <matt.handler@gmail.com>2011-04-20 14:39:20 -0400
commit9d52266f823daf5cb83e3eebe1b9f57594bc9d4a (patch)
tree38402f7ddbb0f3a40ebc7c88d673756701f47510 /Classes/Topic.h
downloadpiccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.tar.gz
piccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.zip
first commit
Diffstat (limited to 'Classes/Topic.h')
-rw-r--r--Classes/Topic.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/Classes/Topic.h b/Classes/Topic.h
new file mode 100644
index 0000000..2ae6520
--- /dev/null
+++ b/Classes/Topic.h
@@ -0,0 +1,34 @@
+//
+// Topic.h
+// acidcow
+//
+// Created by Matthew Handler on 4/16/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@interface Topic : NSObject {
+
+ NSString *title;
+ NSString *creator;
+ NSString *description;
+ NSDate *releaseDate;
+ NSString *category;
+ NSString *iconUrl;
+ NSNumber *picCount;
+ NSString *guid;
+
+}
+
+@property (nonatomic, copy) NSNumber *picCount;
+@property (nonatomic, copy) NSString *title;
+@property (nonatomic, copy) NSString *guid;
+@property (nonatomic, copy) NSString *creator;
+@property (nonatomic, copy) NSString *description;
+@property (nonatomic, copy) NSDate *releaseDate;
+@property (nonatomic, copy) NSString *category;
+@property (nonatomic, copy) NSString *iconUrl;
+
+@end