namespace Entities { public 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; } }