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