TableAutomaticUpload+CoreDataProperties.m 616 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TableAutomaticUpload+CoreDataProperties.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableAutomaticUpload+CoreDataProperties.h"
  9. @implementation TableAutomaticUpload (CoreDataProperties)
  10. + (NSFetchRequest<TableAutomaticUpload *> *)fetchRequest {
  11. return [[NSFetchRequest alloc] initWithEntityName:@"TableAutomaticUpload"];
  12. }
  13. @dynamic account;
  14. @dynamic date;
  15. @dynamic fileName;
  16. @dynamic assetLocalIdentifier;
  17. @dynamic lock;
  18. @dynamic priority;
  19. @dynamic selector;
  20. @dynamic selectorPost;
  21. @dynamic serverUrl;
  22. @dynamic session;
  23. @end