Add simulated stock history to UI

This commit is contained in:
derek.holloway
2026-03-13 10:35:20 -07:00
parent b6798e84f5
commit b54f4a29b7
3 changed files with 17 additions and 8 deletions
+3 -1
View File
@@ -5,7 +5,9 @@ namespace Entities {
public float Quantity { get; set; } = 0;
public float PurchasePrice { get; set; } = 0;
public float SellPrice { get; set; } = 0;
public bool Sold = false;
public bool Sold { get; set; } = false;
public DateTime BuyDate { get; set; } = new DateTime();
public DateTime SellDate { get; set; } = new DateTime();
}
}