10 lines
325 B
C#
10 lines
325 B
C#
namespace Entities {
|
|
|
|
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>();
|
|
}
|
|
|
|
} |