mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
17 lines
311 B
Swift
17 lines
311 B
Swift
//
|
|
// FeedlyCollection.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 19/9/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct FeedlyCollection: Codable, Sendable {
|
|
|
|
public let feeds: [FeedlyFeed]
|
|
public let label: String
|
|
public let id: String
|
|
}
|