mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
22 lines
493 B
Swift
22 lines
493 B
Swift
//
|
|
// ShareViewController.swift
|
|
// FileProviderUIExt
|
|
//
|
|
// Created by Claudio Cambra on 21/2/24.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class ShareViewController: NSViewController {
|
|
@IBOutlet weak var identifierLabel: NSTextField!
|
|
@IBOutlet weak var actionTypeLabel: NSTextField!
|
|
|
|
public override var nibName: NSNib.Name? {
|
|
return NSNib.Name(self.className)
|
|
}
|
|
|
|
var actionViewController: DocumentActionViewController! {
|
|
return parent as? DocumentActionViewController
|
|
}
|
|
}
|