2017-09-17 12:08:50 -07:00
|
|
|
//
|
|
|
|
// Feed+Account.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 9/17/17.
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Data
|
|
|
|
|
2017-09-24 22:35:57 -07:00
|
|
|
struct FeedDictionaryKey {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-09-17 12:08:50 -07:00
|
|
|
public extension Feed {
|
|
|
|
|
|
|
|
var account: Account? {
|
|
|
|
get {
|
2017-09-18 22:00:35 -07:00
|
|
|
return accountWithID(accountID)
|
2017-09-17 12:08:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|