Files
AI-Stock-Trader/WebServer/Entities/PurchasedStock.cs
T
2026-03-11 14:34:09 -07:00

11 lines
297 B
C#

namespace Entities {
class PurchasedStock {
public string Symbol { get; set; } = "";
public float Quantity { get; set; } = 0;
public float PurchasePrice { get; set; } = 0;
public float SellPrice { get; set; } = 0;
public bool Sold = false;
}
}