// // Verbs.h // Espagram // // Created by Abel Fokkinga on 8/29/12. // Copyright (c) 2012 Abel Fokkinga. All rights reserved. // #import #import @class ConjugatedTense; @interface Verbs : NSManagedObject @property (nonatomic, retain) NSString * verb; @property (nonatomic, retain) NSString * language; @property (nonatomic, retain) NSString * translation; @property (nonatomic, retain) NSString * root; @property (nonatomic, retain) ConjugatedTense *conjugatedTenses; @end