//
// Application.swift
// Pachyderm
// Created by Shadowfacts on 9/9/18.
// Copyright © 2018 Shadowfacts. All rights reserved.
import Foundation
public class Application: Decodable {
public let name: String
public let website: URL?
private enum CodingKeys: String, CodingKey {
case name
case website
}