mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
c2ec72c132
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
15 lines
355 B
Swift
15 lines
355 B
Swift
//
|
|
// ShareTableItemView.swift
|
|
// FileProviderUIExt
|
|
//
|
|
// Created by Claudio Cambra on 28/2/24.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class ShareTableItemView: NSTableCellView {
|
|
@IBOutlet weak var typeImageView: NSImageView!
|
|
@IBOutlet weak var label: NSTextField!
|
|
@IBOutlet weak var copyLinkButton: NSButton!
|
|
@IBOutlet weak var optionsButton: NSButton!
|
|
}
|