view Models/PriceModel.swift @ 0:668fd7e0d121

first commit
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Tue, 05 Jan 2021 16:43:09 +0000
parents
children
line wrap: on
line source

//
//  Prices.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 3/1/21.
//

import SwiftUI

struct PriceModel: Codable {
    var close: Double
    var date: String
    var symbol: String
    var volume: Float
    var changePercent: Double
}