12345678910111213141516171819202122232425262728 |
- /**
- * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "NCMessageParameter.h"
- @class NCChatFileStatus;
- NS_ASSUME_NONNULL_BEGIN
- @interface NCMessageFileParameter : NCMessageParameter
- @property (nonatomic, strong) NSString * _Nullable path;
- @property (nonatomic, strong) NSString *mimetype;
- @property (nonatomic, assign) NSInteger size;
- @property (nonatomic, assign) BOOL previewAvailable;
- @property (nonatomic, strong, nullable) NCChatFileStatus *fileStatus;
- @property (nonatomic, assign) int previewImageHeight;
- @property (nonatomic, assign) int width;
- @property (nonatomic, assign) int height;
- @end
- NS_ASSUME_NONNULL_END
|