forked from shadowfacts/Tusker
22 lines
397 B
Swift
22 lines
397 B
Swift
|
//
|
||
|
// Application.swift
|
||
|
// Pachyderm
|
||
|
//
|
||
|
// Created by Shadowfacts on 9/9/18.
|
||
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public class Application: Decodable, ClientModel {
|
||
|
var client: Client!
|
||
|
|
||
|
public let name: String
|
||
|
public let website: URL?
|
||
|
|
||
|
private enum CodingKeys: String, CodingKey {
|
||
|
case name
|
||
|
case website
|
||
|
}
|
||
|
}
|