view LazyBear/Global Models/QuoteModel.swift @ 444:428109b1e3f0

InsiderTransactions implemented
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 22 Jun 2021 16:54:21 +0200
parents 4effac4733b0
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?
}