2018-02-08 09:11:52 +01:00
|
|
|
//
|
|
|
|
// MainWindowController+Scriptability.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
// NetNewsWire
|
2018-02-08 09:11:52 +01:00
|
|
|
//
|
|
|
|
// Created by Olof Hellman on 2/7/18.
|
2018-03-05 04:01:58 +01:00
|
|
|
// Copyright © 2018 Olof Hellman. All rights reserved.
|
2018-02-08 09:11:52 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2018-07-24 03:29:08 +02:00
|
|
|
import Articles
|
2018-02-08 09:11:52 +01:00
|
|
|
|
|
|
|
protocol ScriptingMainWindowController {
|
|
|
|
var scriptingCurrentArticle: Article? { get }
|
|
|
|
var scriptingSelectedArticles: [Article] { get }
|
|
|
|
}
|
|
|
|
|