/FieldMapDataObject.h
http://github.com/bububa/MongoHub-Mac · C Header · 22 lines · 9 code · 6 blank · 7 comment · 0 complexity · a30d3b1e70d3133fd41d805fd374593b MD5 · raw file
- //
- // fieldMapDataObject.h
- // MongoHub
- //
- // Created by Syd on 10-6-22.
- // Copyright 2010 ThePeppersStudio.COM. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- @interface FieldMapDataObject : NSObject {
- NSString *sqlKey;
- NSString *mongoKey;
- }
- @property (nonatomic, retain) NSString *sqlKey;
- @property (nonatomic, retain) NSString *mongoKey;
- - (id)initWithSqlKey:(NSString *)pStr1 andMongoKey:(NSString *)pStr2;
- @end