mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-25 08:30:41 +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
|
|
}
|