NetNewsWire/Frameworks/Account/Extensions/Article+Account.swift

21 lines
293 B
Swift

//
// Article+Account.swift
// Account
//
// Created by Brent Simmons on 9/17/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
import Foundation
import Data
public extension Article {
var account: Account? {
get {
return accountWithID(accountID)
}
}
}