Initial Commit

This commit is contained in:
2025-03-25 21:42:32 -04:00
parent c266eecfeb
commit 30c33d3cfd
247 changed files with 60107 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Text;
using System.Collections.Generic;
using MarketData.Utils;
namespace MarketData.MarketDataModel
{
public class CashTransactions : List<CashTransaction>
{
}
public class CashTransaction
{
public CashTransaction()
{
}
public String Account { get; set; }
public DateTime TransactionDate { get; set; }
public String Description { get; set; }
public double Credit { get; set; }
public double Debit { get; set; }
public double Balance { get; set; }
}
}