// // AppleScriptSlice.h // Pennyworth Punch Clock // // Created by Chris Karr on 7/24/08. // Copyright 2008 Northwestern University. All rights reserved. // #import @interface AppleScriptSlice : NSObject { NSString * name; NSDate * startDate; NSDate * endDate; id stream; } @property(retain) NSString * name; @property(retain) NSDate * startDate; @property(retain) NSDate * endDate; @property(retain) id stream; @end