mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-05 22:37:45 +01:00
16 lines
268 B
Swift
16 lines
268 B
Swift
//
|
|
// FeedlyOrigin.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 19/9/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyOrigin: Decodable {
|
|
var title: String
|
|
var streamId: String
|
|
var htmlUrl: String
|
|
}
|