mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 08:09:41 +01:00
24 lines
440 B
Swift
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
|
|
}
|
|
}
|