/FieldMapDataObject.h

http://github.com/bububa/MongoHub-Mac · C Header · 22 lines · 9 code · 6 blank · 7 comment · 0 complexity · a30d3b1e70d3133fd41d805fd374593b MD5 · raw file

  1. //
  2. // fieldMapDataObject.h
  3. // MongoHub
  4. //
  5. // Created by Syd on 10-6-22.
  6. // Copyright 2010 ThePeppersStudio.COM. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface FieldMapDataObject : NSObject {
  10. NSString *sqlKey;
  11. NSString *mongoKey;
  12. }
  13. @property (nonatomic, retain) NSString *sqlKey;
  14. @property (nonatomic, retain) NSString *mongoKey;
  15. - (id)initWithSqlKey:(NSString *)pStr1 andMongoKey:(NSString *)pStr2;
  16. @end