mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-05 14:27:17 +01:00
18 lines
371 B
Swift
18 lines
371 B
Swift
//
|
|
// MasterFeedTitleView.swift
|
|
// NetNewsWire-iOS
|
|
//
|
|
// Created by Maurice Parker on 9/21/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class MasterTimelineTitleView: UIView {
|
|
|
|
@IBOutlet weak var avatarView: AvatarView!
|
|
@IBOutlet weak var label: UILabel!
|
|
@IBOutlet weak var unreadCountView: MasterTimelineUnreadCountView!
|
|
|
|
}
|