TableAutomaticUpload+CoreDataProperties.h 899 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TableAutomaticUpload+CoreDataProperties.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableAutomaticUpload+CoreDataClass.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TableAutomaticUpload (CoreDataProperties)
  11. + (NSFetchRequest<TableAutomaticUpload *> *)fetchRequest;
  12. @property (nullable, nonatomic, copy) NSString *account;
  13. @property (nullable, nonatomic, copy) NSDate *date;
  14. @property (nullable, nonatomic, copy) NSString *fileName;
  15. @property (nullable, nonatomic, copy) NSString *identifier;
  16. @property (nullable, nonatomic, copy) NSNumber *priority;
  17. @property (nullable, nonatomic, copy) NSString *selector;
  18. @property (nullable, nonatomic, copy) NSString *selectorPost;
  19. @property (nullable, nonatomic, copy) NSString *serverUrl;
  20. @property (nullable, nonatomic, copy) NSString *session;
  21. @end
  22. NS_ASSUME_NONNULL_END