NCDatabase.h 662 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // NCDatabase.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 05/05/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import <Realm/Realm.h>
  9. @interface DBActivity : RLMObject
  10. @property NSString *account;
  11. @property NSString *action;
  12. @property NSDate *date;
  13. @property NSString *file;
  14. @property NSString *fileID;
  15. @property long long idActivity;
  16. @property NSString *link;
  17. @property NSString *note;
  18. @property NSString *selector;
  19. @property NSString *type;
  20. @property BOOL verbose;
  21. @end
  22. // This protocol enables typed collections. i.e.:
  23. // RLMArray<NCDatabase *><NCDatabase>
  24. RLM_ARRAY_TYPE(DBActivity)