TableGPS+CoreDataProperties.m 593 B

123456789101112131415161718192021222324252627
  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 dateRecord;
  14. @dynamic latitude;
  15. @dynamic location;
  16. @dynamic longitude;
  17. @dynamic placemarkAdministrativeArea;
  18. @dynamic placemarkCountry;
  19. @dynamic placemarkLocality;
  20. @dynamic placemarkPostalCode;
  21. @dynamic placemarkThoroughfare;
  22. @end