mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 01:17:29 +01:00
17 lines
278 B
Swift
17 lines
278 B
Swift
//
|
|
// FeedlyFeed.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 19/9/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyFeed: Codable {
|
|
let id: String
|
|
let title: String?
|
|
let updated: Date?
|
|
let website: String?
|
|
}
|