mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-05 22:37:45 +01:00
19 lines
318 B
Swift
19 lines
318 B
Swift
//
|
|
// FeedlyStreamIds.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 18/10/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyStreamIds: Decodable {
|
|
var continuation: String?
|
|
var ids: [String]
|
|
|
|
var isStreamEnd: Bool {
|
|
return continuation == nil
|
|
}
|
|
}
|