OCCapabilities.m 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.themingColorElement = @"";
  23. self.themingColorText = @"";
  24. self.themingLogo = @"";
  25. self.themingName = @"";
  26. self.themingSlogan = @"";
  27. self.themingUrl = @"";
  28. self.externalSiteV1 = @"";
  29. self.endToEndEncryptionVersion = @"";
  30. self.notificationOcsEndpoints = @"";
  31. self.notificationPush = @"";
  32. self.spreedFeatures = @"";
  33. }
  34. return self;
  35. }
  36. @end