Created
April 30, 2020 18:21
-
-
Save azamsharp/7ff111ac99dc64ae941dc208e12146fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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