21 lines
425 B
Objective-C
21 lines
425 B
Objective-C
//
|
|
// Conjugations.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 Persons;
|
|
|
|
@interface Conjugations : NSManagedObject
|
|
|
|
@property (nonatomic, retain) NSString * root;
|
|
@property (nonatomic, retain) NSString * exit;
|
|
@property (nonatomic, retain) Persons *conjugationPerson;
|
|
|
|
@end
|