22 lines
514 B
Objective-C
22 lines
514 B
Objective-C
//
|
|
// ConjugatedTense.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 8/29/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@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
|