Files
NetNewsWire/Feedly/Sources/Feedly/Models/FeedlyCollection.swift
2024-04-07 20:52:34 -07:00

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
}