20 lines
398 B
Objective-C
20 lines
398 B
Objective-C
//
|
|
// Tenses.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>
|
|
|
|
|
|
@interface Tenses : NSManagedObject
|
|
|
|
@property (nonatomic, retain) NSString * tense;
|
|
@property (nonatomic, retain) NSString * language;
|
|
@property (nonatomic, retain) NSString * translation;
|
|
|
|
@end
|