IceCubesApp/Packages/Models/Sources/Models/OauthToken.swift
2022-12-01 09:05:26 +01:00

9 lines
179 B
Swift

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