IceCubesApp/Packages/Models/Sources/Models/OauthToken.swift

9 lines
199 B
Swift

import Foundation
public struct OauthToken: Codable, Hashable, Sendable {
public let accessToken: String
public let tokenType: String
public let scope: String
public let createdAt: Double
}