//
//  Artwork.h
//  ZIA Gallery Maker
//
//  Created by Frank Mcpherson on 11/26/09.
//  Copyright 2009 bitdoctors.com. All rights reserved.
//


@interface Artwork : NSObject {
	NSString *chineseTitle;
	NSString *cost;
	NSString *imageRepresentation;
	NSString *medium;
	NSString *size;
	NSString *westernTitle;
	NSString *script;
	NSString *inventoryCode;
	
}

@property (readwrite, retain) NSString *chineseTitle;
@property (readwrite, retain) NSString *westernTitle;
@property (readwrite, retain) NSString *cost;
@property (readwrite, retain) NSString *medium;
@property (readwrite, retain) NSString *size;
@property (readwrite, retain) NSString *script;
@property (readwrite, retain) NSString *inventoryCode;
@property (readwrite, retain) NSString *imageRepresentation;
@property (readonly) NSString *imageTitle;
@property (readonly) NSString *imageSubtitle;

-(id)initWithImageRepresentation:(NSString *)anImageRepresentation;

/*	TODO fhm Needs to emit its own html detail page that hooks in to the current gallery
	and references the image enlargements. Probably can get that information from the 
	app controller
 */

@end
