mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-08 23:45:37 +01:00
24 lines
454 B
Swift
24 lines
454 B
Swift
//
|
|
// FeedWranglerAuthorizationResult.swift
|
|
// Account
|
|
//
|
|
// Created by Jonathan Bennett on 2019-11-20.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedWranglerAuthorizationResult: Hashable, Codable {
|
|
|
|
let accessToken: String?
|
|
let error: String?
|
|
let result: String
|
|
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case accessToken = "access_token"
|
|
case error = "error"
|
|
case result = "result"
|
|
}
|
|
}
|