18 lines
297 B
Swift
18 lines
297 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 {
|
|
var feedId: String
|
|
var id: String
|
|
var title: String
|
|
var updated: Date?
|
|
var website: String?
|
|
}
|