Owner.h 255 B

1234567891011121314151617
  1. //
  2. // Owner.h
  3. // UICatalog
  4. //
  5. // Created by Tim Oliver on 17/02/2016.
  6. // Copyright © 2016 Realm. All rights reserved.
  7. //
  8. #if __has_include(<Realm/Realm.h>)
  9. #import <Realm/Realm.h>
  10. @interface Owner : RLMObject
  11. @property NSString *name;
  12. @end
  13. #endif