23 lines
313 B
Objective-C
23 lines
313 B
Objective-C
//
|
|
// Lesson.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/23/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "Lesson.h"
|
|
#import "Verb.h"
|
|
|
|
|
|
@implementation Lesson
|
|
|
|
@dynamic conjugator;
|
|
@dynamic dateAdded;
|
|
@dynamic subTitle;
|
|
@dynamic tense;
|
|
@dynamic title;
|
|
@dynamic verbs;
|
|
|
|
@end
|