metatext-app-ios-iphone-ipad/Mastodon/Sources/Mastodon/Entities/AccessToken.swift

10 lines
210 B
Swift
Raw Normal View History

2020-08-31 01:33:11 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct AccessToken: Codable {
public let scope: String
public let tokenType: String
public let accessToken: String
}