mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Move local modules into a folder named Modules.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// ReaderAPIUnreadEntry.swift
|
||||
// Account
|
||||
//
|
||||
// Created by Jeremy Beker on 5/28/19.
|
||||
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
public struct ReaderAPIReferenceWrapper: Codable, Sendable {
|
||||
|
||||
public let itemRefs: [ReaderAPIReference]?
|
||||
public let continuation: String?
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case itemRefs = "itemRefs"
|
||||
case continuation = "continuation"
|
||||
}
|
||||
}
|
||||
|
||||
public struct ReaderAPIReference: Codable, Sendable {
|
||||
|
||||
public let itemID: String?
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case itemID = "id"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user