Files
AI-Stock-Trader/WebServer/Entities/LoginSession.cs
T

10 lines
332 B
C#

namespace Entities {
public class loginSession {
public string UserName { get; set; } = "";
public float Money { get; set; } = 0;
public List<Stock> TrackedStocks { get; set; } = new List<Stock>();
public List<PurchasedStock> TradeHistory { get; set; } = new List<PurchasedStock>();
}
}