NetNewsWire/Frameworks/Account/Extensions/Feed+Account.swift
2017-09-18 22:00:35 -07:00

20 lines
286 B
Swift

//
// Feed+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 Feed {
var account: Account? {
get {
return accountWithID(accountID)
}
}
}