mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-20 21:08:07 +00:00
8 lines
179 B
Swift
8 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
|
|
}
|