17 lines
343 B
Swift
17 lines
343 B
Swift
//
|
|
// MainWindowController+Scriptability.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Olof Hellman on 2/7/18.
|
|
// Copyright © 2018 Olof Hellman. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Data
|
|
|
|
protocol ScriptingMainWindowController {
|
|
var scriptingCurrentArticle: Article? { get }
|
|
var scriptingSelectedArticles: [Article] { get }
|
|
}
|
|
|