12345678910111213141516171819202122232425262728293031323334353637383940 |
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NCRichDocumentTemplate : NSObject
- @property NSInteger templateID;
- @property (nonatomic, strong) NSString *delete;
- @property (nonatomic, strong) NSString *extension;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *preview;
- @property (nonatomic, strong) NSString *type;
- @end
- NS_ASSUME_NONNULL_END
|