Give $1000 starting out and track money [ Paper trades ]

This commit is contained in:
2026-03-08 20:41:39 -07:00
parent ce4f9a197d
commit 2eab9d99ba
5 changed files with 77 additions and 31 deletions
+1
View File
@@ -2,6 +2,7 @@ namespace Entities {
class loginSession {
public string UserName { get; set; } = "";
public float Money { get; set; } = 0;
public List<PurchasedStock> TrackedStocks { get; set; } = new List<PurchasedStock>();
}