IceCubesApp/Packages/Models/Sources/Models/OauthToken.swift
Thomas Ricouard 1f858414d8 format .
2024-02-14 12:48:14 +01:00

16 lines
414 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
public init(accessToken: String, tokenType: String, scope: String, createdAt: Double) {
self.accessToken = accessToken
self.tokenType = tokenType
self.scope = scope
self.createdAt = createdAt
}
}