NetNewsWire/Feedbin/Sources/Feedbin/FeedbinStarredEntry.swift
2024-04-07 14:34:06 -07:00

24 lines
440 B
Swift

//
// FeedbinStarredEntry.swift
// Account
//
// Created by Maurice Parker on 5/15/19.
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
//
import Foundation
public struct FeedbinStarredEntry: Codable, Sendable {
public let starredEntries: [Int]
enum CodingKeys: String, CodingKey {
case starredEntries = "starred_entries"
}
public init(starredEntries: [Int]) {
self.starredEntries = starredEntries
}
}