mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
22 lines
338 B
Swift
22 lines
338 B
Swift
|
|
//
|
||
|
|
// GoogleReaderCompatibleIcon.swift
|
||
|
|
// Account
|
||
|
|
//
|
||
|
|
// Created by Maurice Parker on 5/6/19.
|
||
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
struct GoogleReaderCompatibleIcon: Codable {
|
||
|
|
|
||
|
|
let host: String
|
||
|
|
let url: String
|
||
|
|
|
||
|
|
enum CodingKeys: String, CodingKey {
|
||
|
|
case host
|
||
|
|
case url
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|