23 lines
367 B
Objective-C
23 lines
367 B
Objective-C
//
|
|
// ConjugatedTense.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 8/29/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "ConjugatedTense.h"
|
|
#import "Conjugations.h"
|
|
#import "Tenses.h"
|
|
#import "Verbs.h"
|
|
|
|
|
|
@implementation ConjugatedTense
|
|
|
|
@dynamic regularConjugation;
|
|
@dynamic verb;
|
|
@dynamic tense;
|
|
@dynamic irregularConjugation;
|
|
|
|
@end
|