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