Start pulling AI out of the UI and into the background service

This commit is contained in:
2026-03-10 20:20:42 -07:00
parent c74eb3b3fa
commit d9fd9b2581
5 changed files with 252 additions and 239 deletions
+2 -3
View File
@@ -2,10 +2,9 @@ namespace Entities {
class PurchasedStock {
public string Symbol { get; set; } = "";
public float PurchasePrice { get; set; } = 0;
public float Quantity { get; set; } = 0;
public DateTime PurchaseDate { get; set; } = DateTime.Now;
public int PredictedMovement { get; set; } = 0;
public float PurchasePrice { get; set; } = 0;
public float SellPrice { get; set; } = 0;
}
}