mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 09:26:26 +01:00
15 lines
251 B
Swift
15 lines
251 B
Swift
//
|
|
// FeedlyCategory.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 19/9/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyCategory: Decodable {
|
|
let label: String
|
|
let id: String
|
|
}
|