From 9d52266f823daf5cb83e3eebe1b9f57594bc9d4a Mon Sep 17 00:00:00 2001 From: matt handler Date: Wed, 20 Apr 2011 14:39:20 -0400 Subject: first commit --- Classes/Topic.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Classes/Topic.h (limited to 'Classes/Topic.h') 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 + + +@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 -- cgit v1.2.3