OCCapabilities.m 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.themingBackground = @"";
  20. self.themingColor = @"";
  21. self.themingColorElement = @"";
  22. self.themingColorText = @"";
  23. self.themingLogo = @"";
  24. self.themingName = @"";
  25. self.themingSlogan = @"";
  26. self.themingUrl = @"";
  27. self.externalSiteV1 = @"";
  28. self.endToEndEncryptionVersion = @"";
  29. self.notificationOcsEndpoints = @"";
  30. self.notificationPush = @"";
  31. self.spreedFeatures = @"";
  32. self.richdocumentsMimetypes = [NSArray new];
  33. self.HCShopUrl = @"";
  34. self.paginationEndponit = @"";
  35. }
  36. return self;
  37. }
  38. @end