TableUpload+CoreDataProperties.m 579 B

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