11 lines
304 B
C#
11 lines
304 B
C#
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;
|
|
}
|
|
|
|
} |