NetNewsWire/Frameworks/Account/GoogleReaderCompatible/GoogleReaderCompatibleStarr...

20 lines
366 B
Swift

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