// // ConjugatedTense.h // Espagram // // Created by Abel Fokkinga on 8/29/12. // Copyright (c) 2012 Abel Fokkinga. All rights reserved. // #import #import @class Conjugations, Tenses, Verbs; @interface ConjugatedTense : NSManagedObject @property (nonatomic, retain) NSNumber * regularConjugation; @property (nonatomic, retain) Verbs *verb; @property (nonatomic, retain) Tenses *tense; @property (nonatomic, retain) Conjugations *irregularConjugation; @end