1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // OCCapabilities.m
- // ownCloud iOS library
- //
- // Created by Gonzalo Gonzalez on 4/11/15.
- // Copyright © 2015 ownCloud. All rights reserved.
- //
- #import "OCCapabilities.h"
- @implementation OCCapabilities
- - (id)init {
- self = [super init];
- if (self) {
- self.versionMajor = 0;
- self.versionMinor = 0;
- self.versionMicro = 0;
- self.versionString = @"";
- self.versionEdition = @"";
- self.corePollInterval = 0;
- self.filesSharingExpireDateDaysNumber = 0;
-
- self.themingBackground = @"";
- self.themingColor = @"";
- self.themingColorElement = @"";
- self.themingColorText = @"";
- self.themingLogo = @"";
- self.themingName = @"";
- self.themingSlogan = @"";
- self.themingUrl = @"";
-
- self.externalSiteV1 = @"";
-
- self.endToEndEncryptionVersion = @"";
-
- self.notificationOcsEndpoints = @"";
- self.notificationPush = @"";
-
- self.spreedFeatures = @"";
- }
- return self;
- }
- @end
|