00001 // 00002 // GtdContext.h 00003 // ToodledoAPI 00004 // 00005 // Created by Alex Leutgöb on 09.11.09. 00006 // Copyright 2009 alexleutgoeb.com. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 00011 00012 @interface GtdContext : NSObject { 00013 00014 @private 00015 NSInteger contextId; 00016 NSString *title; 00017 } 00018 00019 @property (nonatomic) NSInteger contextId; 00020 @property (nonatomic, copy) NSString *title; 00021 00022 @end