mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 08:09:41 +01:00
18 lines
370 B
Swift
18 lines
370 B
Swift
//
|
|
// MainWindowController+Scriptability.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Olof Hellman on 2/7/18.
|
|
// Copyright © 2018 Olof Hellman. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Articles
|
|
|
|
protocol ScriptingMainWindowController {
|
|
|
|
@MainActor var scriptingCurrentArticle: Article? { get }
|
|
@MainActor var scriptingSelectedArticles: [Article] { get }
|
|
}
|
|
|