OCCapabilities.m 812 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // OCCapabilities.m
  3. // ownCloud iOS library
  4. //
  5. // Created by Gonzalo Gonzalez on 4/11/15.
  6. // Copyright © 2015 ownCloud. All rights reserved.
  7. //
  8. #import "OCCapabilities.h"
  9. @implementation OCCapabilities
  10. - (id)init {
  11. self = [super init];
  12. if (self) {
  13. self.versionMajor = 0;
  14. self.versionMinor = 0;
  15. self.versionMicro = 0;
  16. self.versionString = @"";
  17. self.versionEdition = @"";
  18. self.corePollInterval = 0;
  19. self.filesSharingExpireDateDaysNumber = 0;
  20. self.themingBackground = @"";
  21. self.themingColor = @"";
  22. self.themingLogo = @"";
  23. self.themingName = @"";
  24. self.themingSlogan = @"";
  25. self.themingUrl = @"";
  26. self.endToEndEncryptionVersion = @"";
  27. }
  28. return self;
  29. }
  30. @end