2019-09-19 04:56:43 +02:00
|
|
|
//
|
|
|
|
// FeedlyCategory.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Kiel Gillard on 19/9/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct FeedlyCategory: Decodable {
|
2020-01-17 06:47:21 +01:00
|
|
|
let label: String
|
|
|
|
let id: String
|
2019-09-19 04:56:43 +02:00
|
|
|
}
|