16 lines
317 B
Swift
16 lines
317 B
Swift
|
//
|
||
|
// FeedListControlsView.swift
|
||
|
// Evergreen
|
||
|
//
|
||
|
// Created by Brent Simmons on 11/1/17.
|
||
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
@objc final class FeedListControlsView: NSView {
|
||
|
|
||
|
@IBOutlet var addToFeedsButton: NSButton!
|
||
|
@IBOutlet var openHomePageButton: NSButton!
|
||
|
}
|