B4. Plus the previous commit. Evaluate the algorithm

This commit is contained in:
2026-03-12 18:53:03 -07:00
parent aa38f9745a
commit b6798e84f5
8 changed files with 63 additions and 48 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
namespace Entities {
class loginSession {
public class loginSession {
public string UserName { get; set; } = "";
public float Money { get; set; } = 0;
public List<Stock> TrackedStocks { get; set; } = new List<Stock>();
+1 -1
View File
@@ -1,6 +1,6 @@
namespace Entities {
class PurchasedStock {
public class PurchasedStock {
public string Symbol { get; set; } = "";
public float Quantity { get; set; } = 0;
public float PurchasePrice { get; set; } = 0;
+1 -1
View File
@@ -1,6 +1,6 @@
namespace Entities {
class Stock {
public class Stock {
public string Symbol { get; set; } = "";
public float Score { get; set; } = 0;
}