nextcloud-desktop/shell_integration/MacOSX/NextcloudIntegration/FileProviderUIExt/Sharing/ShareViewDataSourceUIDelegate.swift
Claudio Cambra 1d0e3bc98e Move all sharing components for FileProviderUIExt into a Sharing folder
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
2024-09-12 09:50:50 +02:00

17 lines
360 B
Swift

//
// ShareViewDataSourceUIDelegate.swift
// FileProviderUIExt
//
// Created by Claudio Cambra on 28/2/24.
//
import Foundation
import NextcloudKit
protocol ShareViewDataSourceUIDelegate {
func fetchStarted()
func fetchFinished()
func hideOptions(_ sender: Any)
func showOptions(share: NKShare)
func showError(_ errorString: String)
}