view LazyBear/Global Models/InsiderTransactionModel.swift @ 416:1662a41e2c1a

KeyStatsView implemented
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 09 Jun 2021 20:26:28 +0200
parents a7c9dd0c5822
children 428109b1e3f0
line wrap: on
line source

//
//  InsiderTransactionModel.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 7/6/21.
//

import SwiftUI

struct InsiderTransactionModel: Codable, Hashable {
    var filingDate: String
    var fullName: String
    var postShares: Int?
    var reportedTitle: String?
    var transactionCode: String
    var transactionPrice: Float?
    var transactionShares: Int?
    var transactionValue: Float?
}