17 lines
339 B
Swift
17 lines
339 B
Swift
//
|
|
// AccountsAddTableCellView.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 5/1/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class AccountsAddTableCellView: NSTableCellView {
|
|
|
|
@IBOutlet weak var accountImageView: NSImageView?
|
|
@IBOutlet weak var accountNameLabel: NSTextField?
|
|
|
|
}
|