view LazyBear/Global Models/InsiderTransactionModel.swift @ 454:c79a3ed3d230

StockView for WatchOS implemented
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Sun, 27 Jun 2021 20:55:05 +0200
parents 428109b1e3f0
children c6913f0ce46e
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: Float?
    var reportedTitle: String?
    var transactionCode: String
    var transactionPrice: Float?
    var transactionShares: Int?
    var transactionValue: Float?
}