Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created April 30, 2020 18:21
Show Gist options
  • Save azamsharp/7ff111ac99dc64ae941dc208e12146fb to your computer and use it in GitHub Desktop.
Save azamsharp/7ff111ac99dc64ae941dc208e12146fb to your computer and use it in GitHub Desktop.
//
// Tracking.swift
// COVID19App
//
// Created by Mohammad Azam on 4/29/20.
// Copyright © 2020 Mohammad Azam. All rights reserved.
//
import Foundation
struct Tracking: Decodable {
let state: String
let total: Int
let positive: Int
let death: Int
let hospitalized: Int?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment