view LazyBear/Global Models/QuoteModel.swift @ 425:4effac4733b0

Changing keys from API responses
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 16 Jun 2021 13:46:01 +0200
parents 6303385b3629
children c79a3ed3d230
line wrap: on
line source

//
//  QuoteModel.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 21/4/21.
//

import SwiftUI

struct QuoteModel: Codable {
    var companyName: String
    var latestPrice: Double?
    var changePercent: Double?
}