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

9 lines
250 B
C#

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