1234567891011121314151617181920 |
- //
- // OCRichObjectStrings.h
- // ownCloud iOS library
- //
- // Created by Marino Faggiana on 23/01/17.
- // Copyright © 2017 ownCloud. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface OCRichObjectStrings : NSObject
- @property (nonatomic, strong) NSString *idObject;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *path;
- @property (nonatomic, strong) NSString *link;
- @property (nonatomic, strong) NSString *server;
- @end
|