TableActivity+CoreDataProperties.h 962 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // TableActivity+CoreDataProperties.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/03/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableActivity+CoreDataClass.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TableActivity (CoreDataProperties)
  11. + (NSFetchRequest<TableActivity *> *)fetchRequest;
  12. @property (nullable, nonatomic, copy) NSString *account;
  13. @property (nullable, nonatomic, copy) NSString *action;
  14. @property (nullable, nonatomic, copy) NSDate *date;
  15. @property (nullable, nonatomic, copy) NSString *file;
  16. @property (nullable, nonatomic, copy) NSString *fileID;
  17. @property (nullable, nonatomic, copy) NSNumber *idActivity;
  18. @property (nullable, nonatomic, copy) NSString *link;
  19. @property (nullable, nonatomic, copy) NSString *note;
  20. @property (nullable, nonatomic, copy) NSString *selector;
  21. @property (nullable, nonatomic, copy) NSString *type;
  22. @property (nullable, nonatomic, copy) NSNumber *verbose;
  23. @end
  24. NS_ASSUME_NONNULL_END