Dog.h 378 B

12345678910111213141516171819202122232425
  1. //
  2. // Dog.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. #import "Owner.h"
  11. @interface Dog : RLMObject
  12. @property NSString *name;
  13. @property CGFloat height;
  14. @property NSDate *birthdate;
  15. @property BOOL vaccinated;
  16. @property Owner *owner;
  17. @end
  18. #endif