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

10 lines
263 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;
}
}