Make various tweaks, mostly formatting and Id -> ID changes, to ReaderAPI.

This commit is contained in:
Brent Simmons
2024-04-06 13:14:03 -07:00
parent 5555ae5adc
commit fbc0c72cd5
8 changed files with 41 additions and 42 deletions

View File

@@ -21,9 +21,9 @@ public struct ReaderAPIReferenceWrapper: Codable, Sendable {
public struct ReaderAPIReference: Codable, Sendable {
public let itemId: String?
public let itemID: String?
enum CodingKeys: String, CodingKey {
case itemId = "id"
case itemID = "id"
}
}