Mercurial > public > lazybear
diff LazyBear/Global Models/InsiderTransactionModel.swift @ 411:681fb377235e
Implementing insider transactions
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Mon, 07 Jun 2021 20:59:52 +0200 |
parents | |
children | a7c9dd0c5822 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear/Global Models/InsiderTransactionModel.swift Mon Jun 07 20:59:52 2021 +0200 @@ -0,0 +1,19 @@ +// +// InsiderTransactionModel.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 7/6/21. +// + +import SwiftUI + +struct InsiderTransactionModel: Codable { + var filingDate: String + var fullName: String + var postShares: Int + var reportedTitle: String? + var transactionCode: String + var transactionPrice: Float + var transactionShares: Int + var transactionValue: Float +}