23 lines
531 B
Objective-C
23 lines
531 B
Objective-C
//
|
|
// Verbs.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 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
|