Files
bundesmessenger-ios/Riot/Modules/ContextMenu/ActionProviders/RoomActionProviderProtocol.swift
T
Mauro Romito 12837d4b89 update license
2024-09-25 12:24:52 +02:00

16 lines
481 B
Swift

//
// Copyright 2022-2024 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only
// Please see LICENSE in the repository root for full details.
//
import Foundation
/// Classes compliant with the protocol `RoomActionProviderProtocol` are meant to provide the menu within `UIContextMenuActionProvider`
@available(iOS 13.0, *)
protocol RoomActionProviderProtocol {
/// menu instance returned within the `UIContextMenuActionProvider` block
var menu: UIMenu { get }
}