//
//  NameCheckResult.h
//  Free Name
//
//  Created by Willem Laurentz Middelkoop on 14-03-11.
//  Copyright 2011 WMIT. All rights reserved.
//

#import <Foundation/Foundation.h>


@interface NameCheckResult : NSObject {
	NSString *testValue;
	NSString *isAvailable;
	NSString *nameCheckType;
	
}
- (void)dealloc;

@property (nonatomic, copy)NSString *testValue;
@property (nonatomic, copy)NSString *isAvailable;
@property (nonatomic, copy)NSString *nameCheckType;


@end
