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 { get; set; } = false; public DateTime BuyDate { get; set; } = new DateTime(); public DateTime SellDate { get; set; } = new DateTime(); } }