NetNewsWire/Evergreen/AppConstants.swift

34 lines
784 B
Swift
Raw Normal View History

2017-05-26 22:10:30 +02:00
//
// AppConstants.swift
2017-05-26 22:22:31 +02:00
// Evergreen
2017-05-26 22:10:30 +02:00
//
// Created by Brent Simmons on 8/30/15.
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
//
import Foundation
2017-05-27 19:43:27 +02:00
let appName = "Evergreen"
2017-05-26 22:10:30 +02:00
extension Notification.Name {
static let SidebarSelectionDidChange = Notification.Name("SidebarSelectionDidChangeNotification")
static let TimelineSelectionDidChange = Notification.Name("TimelineSelectionDidChangeNotification")
static let AppNavigationKeyPressed = Notification.Name("AppNavigationKeyPressedNotification")
}
struct AppUserInfoKey {
static let view = "view"
static let node = "node"
static let objects = "objects"
static let article = "article"
static let articles = "articles"
static let articleStatus = "status"
static let appNavigation = "key"
}
2017-05-26 22:10:30 +02:00