23 lines
531 B
Objective-C
23 lines
531 B
Objective-C
//
|
|
// TestResult.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/23/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@class Verb;
|
|
|
|
@interface TestResult : NSManagedObject
|
|
|
|
@property (nonatomic, retain) NSString * conjugatedPerson;
|
|
@property (nonatomic, retain) NSNumber * failedCounter;
|
|
@property (nonatomic, retain) NSNumber * passedCounter;
|
|
@property (nonatomic, retain) NSString * testType;
|
|
@property (nonatomic, retain) Verb *verb;
|
|
|
|
@end
|