20 lines
251 B
Objective-C
20 lines
251 B
Objective-C
//
|
|
// Verb.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/13/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "Verb.h"
|
|
#import "Lesson.h"
|
|
|
|
|
|
@implementation Verb
|
|
|
|
@dynamic meaning;
|
|
@dynamic verb;
|
|
@dynamic lesson;
|
|
|
|
@end
|