TableGPS+CoreDataProperties.m 572 B

1234567891011121314151617181920212223242526
  1. //
  2. // TableGPS+CoreDataProperties.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableGPS+CoreDataProperties.h"
  9. @implementation TableGPS (CoreDataProperties)
  10. + (NSFetchRequest<TableGPS *> *)fetchRequest {
  11. return [[NSFetchRequest alloc] initWithEntityName:@"TableGPS"];
  12. }
  13. @dynamic latitude;
  14. @dynamic location;
  15. @dynamic longitude;
  16. @dynamic placemarkAdministrativeArea;
  17. @dynamic placemarkCountry;
  18. @dynamic placemarkLocality;
  19. @dynamic placemarkPostalCode;
  20. @dynamic placemarkThoroughfare;
  21. @end