mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
17 lines
348 B
Swift
17 lines
348 B
Swift
|
|
//
|
||
|
|
// MainWindowController+Scriptability.swift
|
||
|
|
// Evergreen
|
||
|
|
//
|
||
|
|
// Created by Olof Hellman on 2/7/18.
|
||
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
import Data
|
||
|
|
|
||
|
|
protocol ScriptingMainWindowController {
|
||
|
|
var scriptingCurrentArticle: Article? { get }
|
||
|
|
var scriptingSelectedArticles: [Article] { get }
|
||
|
|
}
|
||
|
|
|