NCMessageLocationParameter.h 410 B

12345678910111213141516171819
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <Foundation/Foundation.h>
  6. #import "NCMessageParameter.h"
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface NCMessageLocationParameter : NCMessageParameter
  9. @property (nonatomic, strong) NSString *latitude;
  10. @property (nonatomic, strong) NSString *longitude;
  11. @end
  12. NS_ASSUME_NONNULL_END