19 lines
460 B
Swift
19 lines
460 B
Swift
|
//
|
||
|
// FeedlyLink.swift
|
||
|
// Account
|
||
|
//
|
||
|
// Created by Kiel Gillard on 3/10/19.
|
||
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct FeedlyLink: Decodable {
|
||
|
var href: String
|
||
|
|
||
|
/// The mime type of the resource located by `href`.
|
||
|
/// When `nil`, it's probably a web page?
|
||
|
/// https://groups.google.com/forum/#!searchin/feedly-cloud/feed$20url%7Csort:date/feedly-cloud/Rx3dVd4aTFQ/Hf1ZfLJoCQAJ
|
||
|
var type: String?
|
||
|
}
|