mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-08 15:35:21 +01:00
d3c168a12e
The add_feed endpoint does not return feed info. The _and_wait endpoint can be slower (up to 10 seconds) but will make sure we gett the right URL if available.
19 lines
338 B
Swift
19 lines
338 B
Swift
//
|
|
// FeedWranglerSubscriptionResult.swift
|
|
// Account
|
|
//
|
|
// Created by Jonathan Bennett on 2019-11-20.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedWranglerSubscriptionResult: Hashable, Codable {
|
|
|
|
let feed: FeedWranglerSubscription
|
|
let error: String?
|
|
let result: String
|
|
|
|
}
|
|
|