Created
January 2, 2020 19:29
-
-
Save azamsharp/7d93b0f7b760b962fa09208c911dc628 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
// | |
// Stock.swift | |
// stocks | |
// | |
// Created by Mohammad Azam on 12/24/19. | |
// Copyright © 2019 Mohammad Azam. All rights reserved. | |
// | |
import Foundation | |
struct Stock: Decodable { | |
let symbol: String | |
let description: String | |
let price: Double | |
let change: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment