Files
NetNewsWire/Shared/UserInfoKey.swift

24 lines
500 B
Swift
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// UserInfoKey.swift
// NetNewsWire
//
// Created by Maurice Parker on 11/14/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Foundation
// Used for state restoration  dont change the values.
struct UserInfoKey {
static let feed = "webFeed"
static let url = "url"
static let articlePath = "articlePath"
static let itemIdentifier = "feedIdentifier"
static let windowState = "windowState"
static let articleWindowScrollY = "articleWindowScrollY"
}