22 lines
310 B
Objective-C
22 lines
310 B
Objective-C
//
|
|
// Verbs.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 8/29/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "Verbs.h"
|
|
#import "ConjugatedTense.h"
|
|
|
|
|
|
@implementation Verbs
|
|
|
|
@dynamic verb;
|
|
@dynamic language;
|
|
@dynamic translation;
|
|
@dynamic root;
|
|
@dynamic conjugatedTenses;
|
|
|
|
@end
|