summaryrefslogtreecommitdiffstats
path: root/Classes/Topic.h
diff options
context:
space:
mode:
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