NCRichDocumentTemplate.h 554 B

123456789101112131415161718192021222324
  1. //
  2. // NCRichDocumentTemplate.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 14/11/2018.
  6. // Copyright © 2018 TWS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NCRichDocumentTemplate : NSObject
  11. @property NSInteger idTemplate;
  12. @property (nonatomic, strong) NSString *delete;
  13. @property (nonatomic, strong) NSString *extension;
  14. @property (nonatomic, strong) NSString *name;
  15. @property (nonatomic, strong) NSString *preview;
  16. @property (nonatomic, strong) NSString *type;
  17. @end
  18. NS_ASSUME_NONNULL_END