forked from shadowfacts/Tusker
22 lines
469 B
Swift
22 lines
469 B
Swift
//
|
|
// RegisteredApplication.swift
|
|
// Pachyderm
|
|
//
|
|
// Created by Shadowfacts on 9/9/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class RegisteredApplication: Decodable {
|
|
public let id: String
|
|
public let clientID: String
|
|
public let clientSecret: String
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case id
|
|
case clientID = "client_id"
|
|
case clientSecret = "client_secret"
|
|
}
|
|
}
|